Fixed possible segfault when encoding is Base64.
This commit is contained in:
parent
653ef5c519
commit
1e393f0f0f
@ -2,6 +2,10 @@
|
|||||||
VERSION 0.6.4cvs
|
VERSION 0.6.4cvs
|
||||||
================
|
================
|
||||||
|
|
||||||
|
2005-02-01 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
|
* text.cpp: fixed possible segfault when encoding is Base64 (typo).
|
||||||
|
|
||||||
2005-01-28 Vincent Richard <vincent@vincent-richard.net>
|
2005-01-28 Vincent Richard <vincent@vincent-richard.net>
|
||||||
|
|
||||||
* Started version 0.6.4.
|
* Started version 0.6.4.
|
||||||
|
@ -537,7 +537,7 @@ void text::encodeAndFold(utility::outputStream& os, const string::size_type maxL
|
|||||||
|
|
||||||
encoder* theEncoder;
|
encoder* theEncoder;
|
||||||
|
|
||||||
if (encoding == 'B') theEncoder == new encoderB64;
|
if (encoding == 'B') theEncoder = new encoderB64;
|
||||||
else theEncoder = new encoderQP;
|
else theEncoder = new encoderQP;
|
||||||
|
|
||||||
string qpEncodedBuffer;
|
string qpEncodedBuffer;
|
||||||
|
Loading…
Reference in New Issue
Block a user