projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Complete rebake with web libraries to allow easier testing.
[wxWidgets.git]
/
src
/
common
/
base64.cpp
diff --git
a/src/common/base64.cpp
b/src/common/base64.cpp
index 8ac4ebcadf9e94b84f4db10be61d98dcf9534301..d83daee68236e4ccc8598377a42c7dfbc20a9c44 100644
(file)
--- a/
src/common/base64.cpp
+++ b/
src/common/base64.cpp
@@
-20,7
+20,7
@@
size_t
wxBase64Encode(char *dst, size_t dstLen, const void *src_, size_t srcLen)
{
size_t
wxBase64Encode(char *dst, size_t dstLen, const void *src_, size_t srcLen)
{
- wxCHECK_MSG( src_, wxCONV_FAILED,
_
T("NULL input buffer") );
+ wxCHECK_MSG( src_, wxCONV_FAILED,
wx
T("NULL input buffer") );
const unsigned char *src = static_cast<const unsigned char *>(src_);
const unsigned char *src = static_cast<const unsigned char *>(src_);
@@
-73,7
+73,7
@@
wxBase64Decode(void *dst_, size_t dstLen,
wxBase64DecodeMode mode,
size_t *posErr)
{
wxBase64DecodeMode mode,
size_t *posErr)
{
- wxCHECK_MSG( src, wxCONV_FAILED,
_
T("NULL input buffer") );
+ wxCHECK_MSG( src, wxCONV_FAILED,
wx
T("NULL input buffer") );
unsigned char *dst = static_cast<unsigned char *>(dst_);
unsigned char *dst = static_cast<unsigned char *>(dst_);
@@
-187,8
+187,15
@@
wxBase64Decode(void *dst_, size_t dstLen,
// undo the bit shifting done during encoding
*dst++ = in[0] << 2 | in[1] >> 4;
// undo the bit shifting done during encoding
*dst++ = in[0] << 2 | in[1] >> 4;
- *dst++ = in[1] << 4 | in[2] >> 2;
- *dst++ = in[2] << 6 | in[3];
+
+ // be careful to not overwrite the output buffer with NUL pad
+ // bytes
+ if ( padLen != 2 )
+ {
+ *dst++ = in[1] << 4 | in[2] >> 2;
+ if ( !padLen )
+ *dst++ = in[2] << 6 | in[3];
+ }
}
n = 0;
}
n = 0;
@@
-216,7
+223,7
@@
wxMemoryBuffer wxBase64Decode(const char *src,
size_t *posErr)
{
wxMemoryBuffer buf;
size_t *posErr)
{
wxMemoryBuffer buf;
- wxCHECK_MSG( src, buf,
_
T("NULL input buffer") );
+ wxCHECK_MSG( src, buf,
wx
T("NULL input buffer") );
if ( srcLen == wxNO_LEN )
srcLen = strlen(src);
if ( srcLen == wxNO_LEN )
srcLen = strlen(src);