We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37760aa commit 7f8a5a1Copy full SHA for 7f8a5a1
src/cpp/base64.cpp
@@ -77,7 +77,7 @@ class bitBuffer {
77
78
assert(bitsInBuffer >= 8);
79
80
- *outputP = (this->buffer >> (this->bitsInBuffer - 8)) & 0x3f;
+ *outputP = (this->buffer >> (this->bitsInBuffer - 8)) & 0xff;
81
this->bitsInBuffer -= 8;
82
}
83
version.mk
@@ -8,4 +8,4 @@
8
###############################################################################
9
XMLRPC_MAJOR_RELEASE = 1
10
XMLRPC_MINOR_RELEASE = 22
11
-XMLRPC_POINT_RELEASE = 3
+XMLRPC_POINT_RELEASE = 4
0 commit comments