aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-12-25 17:34:58 +0000
committerVincent Richard <[email protected]>2013-12-25 17:34:58 +0000
commitd385c15e71120500cbd7ae71e13f1cc4e09789c6 (patch)
tree778dbf5315060c43d0bd873c81d2230a07bc28fd
parentBetter error handling. Fixed return values in custom BIO. Added support for S... (diff)
parentusing context for parsing (diff)
downloadvmime-d385c15e71120500cbd7ae71e13f1cc4e09789c6.tar.gz
vmime-d385c15e71120500cbd7ae71e13f1cc4e09789c6.zip
Merge pull request #63 from jdeng/fix1
Using context for parsing.
-rw-r--r--src/word.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/word.cpp b/src/word.cpp
index ec0a20df..2ee4d3e7 100644
--- a/src/word.cpp
+++ b/src/word.cpp
@@ -185,7 +185,7 @@ shared_ptr <word> word::parseNext
pos += 2; // ?=
shared_ptr <word> w = make_shared <word>();
- w->parse(buffer, wordStart, pos, NULL);
+ w->parse(ctx, buffer, wordStart, pos, NULL);
if (newPosition)
*newPosition = pos;