diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
commit | c3434fa53d1c83bc65b640951364f842fe6c79f4 (patch) | |
tree | 51aa552c585518d7b2e2d67eba7c9500065dae05 /src/utils/base64.cpp | |
parent | 185a53c504a0d53e54a7425ea829b5c951661ea8 (diff) | |
download | plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.gz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.bz2 plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.xz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/utils/base64.cpp')
-rw-r--r-- | src/utils/base64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/base64.cpp b/src/utils/base64.cpp index 52c6821fd..fe3d1cb90 100644 --- a/src/utils/base64.cpp +++ b/src/utils/base64.cpp @@ -50,7 +50,7 @@ unsigned char *php3_base64_encode(const unsigned char *const string, const unsigned char *current = string; int i = 0; unsigned char *const result = static_cast<unsigned char *>(calloc( - ((length + 3 - length % 3) * 4 / 3 + 1) * sizeof(char), 1)); + ((length + 3 - length % 3) * 4 / 3 + 1) * sizeof(unsigned char), 1)); while (length > 2) { /* keep going until we have less than 24 bits */ |