|
a/src/utils/base64.cpp |
|
b/src/utils/base64.cpp |
|
... |
|
... |
123 |
* whitespace after it?
|
123 |
* whitespace after it?
|
124 |
*/
|
124 |
*/
|
125 |
for (; ii < in.length(); ch = in[ii++])
|
125 |
for (; ii < in.length(); ch = in[ii++])
|
126 |
if (!isspace((unsigned char)ch)) {
|
126 |
if (!isspace((unsigned char)ch)) {
|
127 |
DPRINT((stderr, "base64_dec: non-white at eod: 0x%x\n",
|
127 |
DPRINT((stderr, "base64_dec: non-white at eod: 0x%x\n",
|
128 |
(unsigned int)ch));
|
128 |
(unsigned int)((unsigned char)ch)));
|
129 |
// Well, there are bad encoders out there. Let it pass
|
129 |
// Well, there are bad encoders out there. Let it pass
|
130 |
//return false;
|
130 |
//return false;
|
131 |
}
|
131 |
}
|
132 |
|
132 |
|
133 |
/*
|
133 |
/*
|