diff options
author | Vincent Richard <[email protected]> | 2018-03-12 19:31:03 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2018-03-12 19:31:03 +0000 |
commit | 754e556aeb72a7e3c152288015bb4727bd29666d (patch) | |
tree | 6ce334633ccd6726dafe949927c62b123fc4df7a | |
parent | Merge pull request #184 from josusky/smtp-auth (diff) | |
parent | Handle parsing of [email protected] <[email protected]> (diff) | |
download | vmime-754e556aeb72a7e3c152288015bb4727bd29666d.tar.gz vmime-754e556aeb72a7e3c152288015bb4727bd29666d.zip |
Merge pull request #192 from bosim/address-parsing
Handle parsing of [email protected] <[email protected]>
-rw-r--r-- | src/vmime/mailbox.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vmime/mailbox.cpp b/src/vmime/mailbox.cpp index 7c6d5e3b..c4b230c4 100644 --- a/src/vmime/mailbox.cpp +++ b/src/vmime/mailbox.cpp @@ -234,8 +234,6 @@ void mailbox::parseImpl ++p; } - - break; } else { @@ -245,10 +243,6 @@ void mailbox::parseImpl } else if (state == State_Address) { - // Skip '<' character - if (*p == '<') - ++p; - bool escaped = false; int comment = 0; |