diff options
author | Vincent Richard <[email protected]> | 2013-12-25 17:34:58 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-12-25 17:34:58 +0000 |
commit | d385c15e71120500cbd7ae71e13f1cc4e09789c6 (patch) | |
tree | 778dbf5315060c43d0bd873c81d2230a07bc28fd | |
parent | Better error handling. Fixed return values in custom BIO. Added support for S... (diff) | |
parent | using context for parsing (diff) | |
download | vmime-d385c15e71120500cbd7ae71e13f1cc4e09789c6.tar.gz vmime-d385c15e71120500cbd7ae71e13f1cc4e09789c6.zip |
Merge pull request #63 from jdeng/fix1
Using context for parsing.
-rw-r--r-- | src/word.cpp | 2 |
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; |