mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
146089 r=ducarroz sr=bienvenu fixing a crasher when downloading pop3 mail with malformed "From" address.
This commit is contained in:
parent
a0e82572a2
commit
6e3818f973
@ -482,13 +482,13 @@ static int msg_parse_Header_addresses (const char *line, char **names, char **ad
|
|||||||
char *name_buf = 0, *name_out, *name_start;
|
char *name_buf = 0, *name_out, *name_start;
|
||||||
char *addr_buf = 0, *addr_out, *addr_start;
|
char *addr_buf = 0, *addr_out, *addr_start;
|
||||||
|
|
||||||
NS_ASSERTION(line, "");
|
|
||||||
if (!line)
|
|
||||||
return -1;
|
|
||||||
if (names)
|
if (names)
|
||||||
*names = 0;
|
*names = 0;
|
||||||
if (addresses)
|
if (addresses)
|
||||||
*addresses = 0;
|
*addresses = 0;
|
||||||
|
NS_ASSERTION(line, "");
|
||||||
|
if (!line)
|
||||||
|
return -1;
|
||||||
line_length = strlen(line);
|
line_length = strlen(line);
|
||||||
if (line_length == 0)
|
if (line_length == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user