aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-03-14 21:37:28 +0000
committerVincent Richard <[email protected]>2005-03-14 21:37:28 +0000
commit5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb (patch)
treed3d6db0a57dabb16a2e33e6738943c3d2acc0b8c
parentAdded test for linear-white-space between encoded words. (diff)
downloadvmime-5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb.tar.gz
vmime-5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb.zip
Fixed bug with CRLF between two encoded words.
-rw-r--r--src/text.cpp2
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;