aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/microhttpd.h2
-rw-r--r--src/microhttpd/base64.c2
2 files changed, 2 insertions, 2 deletions
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++)];