From c17e10b413d94d9e5cc0126f4255db131e39d01e Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 21 Apr 2013 17:30:49 +0200 Subject: [PATCH] base64: fix problems with nonascii chars --- src/base64.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/base64.cpp b/src/base64.cpp index 9d447f3..108da08 100644 --- a/src/base64.cpp +++ b/src/base64.cpp @@ -24,12 +24,13 @@ void base64_encode (const std::string& in, std::string&out, int cols) static const char b64str[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; - int acc = 0, accbits = 0, idx = 0, idxmax = in.length(), col = 0; + unsigned int acc = 0; + int accbits = 0, idx = 0, idxmax = in.length(), col = 0; out.clear(); out.reserve (idxmax + (2 * idxmax / 5) ); //reserve around 140% while (idx < idxmax) { if (accbits < 6) { - acc = (acc << 8) | in[idx++]; + acc = (acc << 8) | (unsigned char) in[idx++]; accbits += 8; } while (accbits >= 6) {