diff options
author | Vincent Richard <[email protected]> | 2004-12-15 20:28:09 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-15 20:28:09 +0000 |
commit | 50a6a9cdfacfa4e1aaa5a35fe8c3bc6ac114fa57 (patch) | |
tree | f18d5df3baa88b63360155b1f53653dcc9630165 /src/encoding.cpp | |
parent | Working on 'maildir' implementation. (diff) | |
download | vmime-50a6a9cdfacfa4e1aaa5a35fe8c3bc6ac114fa57.tar.gz vmime-50a6a9cdfacfa4e1aaa5a35fe8c3bc6ac114fa57.zip |
Added parsing bounds on 'component'.
Diffstat (limited to 'src/encoding.cpp')
-rw-r--r-- | src/encoding.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/encoding.cpp b/src/encoding.cpp index 3211f2a7..de7e3287 100644 --- a/src/encoding.cpp +++ b/src/encoding.cpp @@ -51,6 +51,8 @@ void encoding::parse(const string& buffer, const string::size_type position, { m_name = stringUtils::toLower(string(buffer.begin() + position, buffer.begin() + end)); + setParsedBounds(position, end); + if (newPosition) *newPosition = end; } |