From a0af20defc17d4ef0af3a29ce4fbef1e59dedaa8 Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Thu, 20 Jul 2017 17:04:00 +0200 Subject: [PATCH] - socket_win32.c: replaced free by GLOBAL_FREEMEM --- src/hal/socket/win32/socket_win32.c | 4 ++-- third_party/sqlite/README | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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 +