aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-12-28 13:07:16 +0000
committerVincent Richard <[email protected]>2013-12-28 13:07:16 +0000
commita3206f16894fb4954396a5db7bcfa6488e636f1e (patch)
tree4ae06c46845c627437280eb8b30b3cf24a6e401f
parentAdded define for minimal compatibility with legacy smart pointers. (diff)
parentMerge pull request #63 from jdeng/fix1 (diff)
downloadvmime-a3206f16894fb4954396a5db7bcfa6488e636f1e.tar.gz
vmime-a3206f16894fb4954396a5db7bcfa6488e636f1e.zip
Merge branch 'master' of https://github.com/kisli/vmime
-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;