aboutsummaryrefslogtreecommitdiffstats
path: root/src/headerField.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-03-24 09:02:23 +0000
committerVincent Richard <[email protected]>2013-03-24 09:02:23 +0000
commit84415da8e1c6a650373115ba2772b0a72155b80e (patch)
tree81a4089b53e005f11a0430e70679b31af5a37a04 /src/headerField.cpp
parentFixed whitespace parsing before word. (diff)
downloadvmime-84415da8e1c6a650373115ba2772b0a72155b80e.tar.gz
vmime-84415da8e1c6a650373115ba2772b0a72155b80e.zip
Fixed parsing header field value on next line.
Diffstat (limited to 'src/headerField.cpp')
-rw-r--r--src/headerField.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/headerField.cpp b/src/headerField.cpp
index 59b10e76..7d23ce84 100644
--- a/src/headerField.cpp
+++ b/src/headerField.cpp
@@ -142,7 +142,7 @@ ref <headerField> headerField::parseNext
++pos;
const string::size_type contentsStart = pos;
- string::size_type contentsEnd = 0;
+ string::size_type contentsEnd = end;
// Extract the field value
while (pos < end)