diff options
author | Vincent Richard <[email protected]> | 2013-03-11 09:05:09 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-03-11 09:05:09 +0000 |
commit | 32a80f6c1ed501ceb2e1d7613dcdcce6cdf6fe23 (patch) | |
tree | 72f7ac0894025d16b8dca950fdfe2df97972faf6 /src/mailboxField.cpp | |
parent | Refactored unit tests. (diff) | |
download | vmime-32a80f6c1ed501ceb2e1d7613dcdcce6cdf6fe23.tar.gz vmime-32a80f6c1ed501ceb2e1d7613dcdcce6cdf6fe23.zip |
Fixed mailbox and mailbox group parsing. Added unit tests.
Diffstat (limited to 'src/mailboxField.cpp')
-rw-r--r-- | src/mailboxField.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailboxField.cpp b/src/mailboxField.cpp index 1f11f49c..4eb9d734 100644 --- a/src/mailboxField.cpp +++ b/src/mailboxField.cpp @@ -52,7 +52,7 @@ void mailboxField::parse // Here, we cannot simply call "m_mailbox.parse()" because it // may have more than one address specified (even if this field // should contain only one). We are never too much careful... - ref <address> parsedAddress = address::parseNext(ctx, buffer, position, end, newPosition); + ref <address> parsedAddress = address::parseNext(ctx, buffer, position, end, newPosition, NULL); if (parsedAddress) { |