mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
getting ready for 0.9.59
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
Thu Feb 1 10:12:22 CET 2018
|
||||
Releasing GNU libicrohttpd 0.9.59. -CG
|
||||
|
||||
Thu Feb 1 08:39:50 CET 2018
|
||||
Fix masking operation. -CG/silvioprog
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@
|
||||
#
|
||||
AC_PREREQ([2.64])
|
||||
LT_PREREQ([2.4.0])
|
||||
AC_INIT([GNU Libmicrohttpd],[0.9.58],[libmicrohttpd@gnu.org])
|
||||
AC_INIT([GNU Libmicrohttpd],[0.9.59],[libmicrohttpd@gnu.org])
|
||||
AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
|
||||
AC_CONFIG_HEADERS([MHD_config.h])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
|
||||
* Current version of the library.
|
||||
* 0x01093001 = 1.9.30-1.
|
||||
*/
|
||||
#define MHD_VERSION 0x00095801
|
||||
#define MHD_VERSION 0x00095900
|
||||
|
||||
/**
|
||||
* MHD-internal return code for "YES".
|
||||
|
||||
@@ -36,7 +36,7 @@ BASE64Decode(const char* src)
|
||||
return NULL;
|
||||
}
|
||||
result = dest = malloc(in_len / 4 * 3 + 1);
|
||||
if (result == NULL)
|
||||
if (NULL == result)
|
||||
return NULL; /* out of memory */
|
||||
while (*src) {
|
||||
char a = base64_digits[(unsigned char)*(src++)];
|
||||
|
||||
Reference in New Issue
Block a user