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/addressList.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/addressList.cpp')
-rw-r--r-- | src/addressList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addressList.cpp b/src/addressList.cpp index 5e033f38..326a54e3 100644 --- a/src/addressList.cpp +++ b/src/addressList.cpp @@ -60,7 +60,7 @@ void addressList::parseImpl while (pos < end) { - ref <address> parsedAddress = address::parseNext(ctx, buffer, pos, end, &pos); + ref <address> parsedAddress = address::parseNext(ctx, buffer, pos, end, &pos, NULL); if (parsedAddress != NULL) m_list.push_back(parsedAddress); |