From 649cadcab707b342842f9e579ec235bec05acb54 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Mon, 12 Jul 2021 14:24:07 -0700 Subject: [PATCH] Release 0.1.16 * Only process `Connection: close` header if full request was read (#194). This likely fixes the same issue also reported in #145. * Fix small memory leak when the `type` query string parameter is used; the value was not being freed leading to growing memory usage of a few bytes per request. Upgrading is recommended if you use this feature. * Fix invalid call to `ioctl`, which did not seem to affect Linux systems but could have had an impact on macOS (found in #197). --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index 341349a..1920d77 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H #ifndef WEBDIS_VERSION -#define WEBDIS_VERSION "0.1.16-dev" +#define WEBDIS_VERSION "0.1.16" #endif #endif /* VERSION_H */