diff options
author | Vincent Richard <[email protected]> | 2005-03-14 21:37:28 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-03-14 21:37:28 +0000 |
commit | 5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb (patch) | |
tree | d3d6db0a57dabb16a2e33e6738943c3d2acc0b8c | |
parent | Added test for linear-white-space between encoded words. (diff) | |
download | vmime-5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb.tar.gz vmime-5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb.zip |
Fixed bug with CRLF between two encoded words.
-rw-r--r-- | src/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.cpp b/src/text.cpp index daf79d44..e510da12 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -690,7 +690,7 @@ void text::decodeAndUnfold(const string::const_iterator& inStart, const string:: for ( ; ; ) { - if (p == end || *p == '\n') + if (p == end) // || *p == '\n') { string::const_iterator textEnd = p; |