blaze822: blaze822_addr: take care of string end in comments inside <

pull/163/head
Leah Neukirchen 5 years ago
parent 3a97df9990
commit 9dfbf48be4

@ -229,7 +229,9 @@ blaze822_addr(char *s, char **dispo, char **addro)
s++; s++;
while (*s && c < e && *s != '>') { while (*s && c < e && *s != '>') {
s = skip_comment(s); s = skip_comment(s);
if (*s == '"') { if (!*s) {
break;
} else if (*s == '"') {
// local part may be quoted, allow all // local part may be quoted, allow all
s++; s++;
while (*s && c < e && *s != '"') { while (*s && c < e && *s != '"') {

Loading…
Cancel
Save