aboutsummaryrefslogtreecommitdiffstats
path: root/src/addressList.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-03-11 09:05:09 +0000
committerVincent Richard <[email protected]>2013-03-11 09:05:09 +0000
commit32a80f6c1ed501ceb2e1d7613dcdcce6cdf6fe23 (patch)
tree72f7ac0894025d16b8dca950fdfe2df97972faf6 /src/addressList.cpp
parentRefactored unit tests. (diff)
downloadvmime-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.cpp2
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);