Skip to content

Commit 7f8a5a1

Browse files
author
giraffedata
committed
Release 1.22.04
git-svn-id: https://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/advanced@1934 adbb7d4b-a73a-0410-a071-c5f57c452bd4
1 parent 37760aa commit 7f8a5a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cpp/base64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class bitBuffer {
7777

7878
assert(bitsInBuffer >= 8);
7979

80-
*outputP = (this->buffer >> (this->bitsInBuffer - 8)) & 0x3f;
80+
*outputP = (this->buffer >> (this->bitsInBuffer - 8)) & 0xff;
8181
this->bitsInBuffer -= 8;
8282
}
8383

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
###############################################################################
99
XMLRPC_MAJOR_RELEASE = 1
1010
XMLRPC_MINOR_RELEASE = 22
11-
XMLRPC_POINT_RELEASE = 3
11+
XMLRPC_POINT_RELEASE = 4

0 commit comments

Comments
 (0)