- socket_win32.c: replaced free by GLOBAL_FREEMEM

pull/21/head
Michael Zillgith 8 years ago
parent 180673ebfa
commit a0af20defc

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

@ -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

Loading…
Cancel
Save