diff options
author | Vincent Richard <[email protected]> | 2013-03-24 09:02:23 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-03-24 09:02:23 +0000 |
commit | 84415da8e1c6a650373115ba2772b0a72155b80e (patch) | |
tree | 81a4089b53e005f11a0430e70679b31af5a37a04 /src/headerField.cpp | |
parent | Fixed whitespace parsing before word. (diff) | |
download | vmime-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.cpp | 2 |
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) |