Fixed bug with CRLF between two encoded words.

This commit is contained in:
Vincent Richard 2005-03-14 21:37:28 +00:00
parent 4315b50297
commit 5b638bbfdf

View File

@ -690,7 +690,7 @@ void text::decodeAndUnfold(const string::const_iterator& inStart, const string::
for ( ; ; ) for ( ; ; )
{ {
if (p == end || *p == '\n') if (p == end) // || *p == '\n')
{ {
string::const_iterator textEnd = p; string::const_iterator textEnd = p;