aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-02-01 10:18:02 +0100
committerChristian Grothoff <christian@grothoff.org>2018-02-01 10:18:02 +0100
commit21b2dd96aaffa8e2d0937a339bbdace882db0fee (patch)
tree30179fa550ac09d87b67645488387aadca7c1f2d
parent12a6689266ccc3186b4a30441979aa91ec1f5dae (diff)
downloadlibmicrohttpd-21b2dd96aaffa8e2d0937a339bbdace882db0fee.tar.gz
libmicrohttpd-21b2dd96aaffa8e2d0937a339bbdace882db0fee.zip
getting ready for 0.9.59v0.9.59
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac2
-rw-r--r--src/include/microhttpd.h2
-rw-r--r--src/microhttpd/base64.c2
4 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b58a988f..5eb20f4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Thu Feb 1 10:12:22 CET 2018
2 Releasing GNU libicrohttpd 0.9.59. -CG
3
1Thu Feb 1 08:39:50 CET 2018 4Thu Feb 1 08:39:50 CET 2018
2 Fix masking operation. -CG/silvioprog 5 Fix masking operation. -CG/silvioprog
3 6
diff --git a/configure.ac b/configure.ac
index b4283ef5..c3d28268 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
22# 22#
23AC_PREREQ([2.64]) 23AC_PREREQ([2.64])
24LT_PREREQ([2.4.0]) 24LT_PREREQ([2.4.0])
25AC_INIT([GNU Libmicrohttpd],[0.9.58],[libmicrohttpd@gnu.org]) 25AC_INIT([GNU Libmicrohttpd],[0.9.59],[libmicrohttpd@gnu.org])
26AM_INIT_AUTOMAKE([silent-rules] [subdir-objects]) 26AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
27AC_CONFIG_HEADERS([MHD_config.h]) 27AC_CONFIG_HEADERS([MHD_config.h])
28AC_CONFIG_MACRO_DIR([m4]) 28AC_CONFIG_MACRO_DIR([m4])
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 3f15bf82..4f219fd0 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
126 * Current version of the library. 126 * Current version of the library.
127 * 0x01093001 = 1.9.30-1. 127 * 0x01093001 = 1.9.30-1.
128 */ 128 */
129#define MHD_VERSION 0x00095801 129#define MHD_VERSION 0x00095900
130 130
131/** 131/**
132 * MHD-internal return code for "YES". 132 * MHD-internal return code for "YES".
diff --git a/src/microhttpd/base64.c b/src/microhttpd/base64.c
index 488b2e25..3dc7a142 100644
--- a/src/microhttpd/base64.c
+++ b/src/microhttpd/base64.c
@@ -36,7 +36,7 @@ BASE64Decode(const char* src)
36 return NULL; 36 return NULL;
37 } 37 }
38 result = dest = malloc(in_len / 4 * 3 + 1); 38 result = dest = malloc(in_len / 4 * 3 + 1);
39 if (result == NULL) 39 if (NULL == result)
40 return NULL; /* out of memory */ 40 return NULL; /* out of memory */
41 while (*src) { 41 while (*src) {
42 char a = base64_digits[(unsigned char)*(src++)]; 42 char a = base64_digits[(unsigned char)*(src++)];