- socket_win32.c: replaced free by GLOBAL_FREEMEM
This commit is contained in:
parent
180673ebfa
commit
a0af20defc
2 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
3
third_party/sqlite/README
vendored
3
third_party/sqlite/README
vendored
|
@ -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…
Add table
Reference in a new issue