aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-12-22 00:16:52 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-12-22 00:16:52 +0000
commitcf2051764c5acd745fb4693e9be78e89fb5dd0b5 (patch)
tree87e5498210c747d8b5c306d330b7eb633534fec6 /lib/pop3.c
parent3ce2a3991b85e9de6888e7848ae957cc77f4e1b4 (diff)
email: Fixed segfault introduced in commit 195b63f99c2fe3
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index d3f5a3d85..2fc4e4e88 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -1834,7 +1834,7 @@ static CURLcode pop3_parse_url_options(struct connectdata *conn)
const char *ptr = options;
bool reset = TRUE;
- while(*ptr) {
+ while(ptr && *ptr) {
const char *key = ptr;
while(*ptr && *ptr != '=')