summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <qris@users.noreply.github.com>2017-07-02 12:12:51 +0100
committerGitHub <noreply@github.com>2017-07-02 12:12:51 +0100
commitb1f564266c64b48b99cce410e33d8287bf444d2a (patch)
tree61851e448f1f401b4c698aa80401b16762ea4a8c
parent809d9ebacc409c4a86edb6077f489da67a2653d4 (diff)
parent4b7ab2833ebec9c026c10a761d64ada1ce809438 (diff)
Merge pull request #17 from boxbackup/fix_arm64_unsigned_char
Fix build on ARM64 with unsigned char
-rw-r--r--lib/httpserver/cdecode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/httpserver/cdecode.cpp b/lib/httpserver/cdecode.cpp
index e632f182..11c59d62 100644
--- a/lib/httpserver/cdecode.cpp
+++ b/lib/httpserver/cdecode.cpp
@@ -12,7 +12,7 @@ extern "C"
int base64_decode_value(char value_in)
{
- static const char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
+ static signed const char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
static const char decoding_size = sizeof(decoding);
value_in -= 43;
if (value_in < 0 || value_in > decoding_size) return -1;