- socket_win32.c: replaced free by GLOBAL_FREEMEM

This commit is contained in:
Michael Zillgith 2017-07-20 17:04:00 +02:00
parent 180673ebfa
commit a0af20defc
2 changed files with 4 additions and 3 deletions

View file

@ -253,7 +253,7 @@ ServerSocket_destroy(ServerSocket self)
{
closesocket(self->fd);
WSACleanup();
free(self);
GLOBAL_FREEMEM(self);
}
Socket
@ -401,5 +401,5 @@ Socket_destroy(Socket self)
closesocket(self->fd);
}
free(self);
GLOBAL_FREEMEM(self);
}

View file

@ -1 +1,2 @@
Copy the sqlite amalagamation source code files (sqlite3.c sqlite3ext.h sqlite3.h) in this directory. You can download an archive withan archive with the files here: https://www.sqlite.org/download.html
Copy the sqlite amalagamation source code files (sqlite3.c sqlite3ext.h sqlite3.h) in this directory. You can download an archive with the files here: https://www.sqlite.org/download.html