diff --git a/src/hal/socket/win32/socket_win32.c b/src/hal/socket/win32/socket_win32.c index 0e94445..a8d6560 100644 --- a/src/hal/socket/win32/socket_win32.c +++ b/src/hal/socket/win32/socket_win32.c @@ -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); } diff --git a/third_party/sqlite/README b/third_party/sqlite/README index 2e1781b..02bb67e 100644 --- a/third_party/sqlite/README +++ b/third_party/sqlite/README @@ -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 +