diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-28 03:10:06 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-28 03:10:06 +0800 |
commit | 5f5ddfccb6dc542d5f7025f99f4f624c2796f52d (patch) | |
tree | b381b49bf92259c4a66a31f4a9a84157c4164288 /camel/providers/pop3 | |
parent | 3fa9fa84fcf6f41bf59175b9c5eb310f5f2004af (diff) | |
download | gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar.gz gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar.bz2 gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar.lz gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar.xz gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.tar.zst gsoc2013-evolution-5f5ddfccb6dc542d5f7025f99f4f624c2796f52d.zip |
Fix the APOP check to not crash on servers that don't return any
* providers/pop3/camel-pop3-store.c (connect_to_server): Fix the
APOP check to not crash on servers that don't return any
information on the +OK greeting line.
svn path=/trunk/; revision=7184
Diffstat (limited to 'camel/providers/pop3')
-rw-r--r-- | camel/providers/pop3/camel-pop3-store.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/camel/providers/pop3/camel-pop3-store.c b/camel/providers/pop3/camel-pop3-store.c index 2f23bf0bb2..6fc56fc125 100644 --- a/camel/providers/pop3/camel-pop3-store.c +++ b/camel/providers/pop3/camel-pop3-store.c @@ -230,14 +230,16 @@ connect_to_server (CamelService *service, /*gboolean real, */CamelException *ex) if (status != CAMEL_POP3_OK) return FALSE; - apoptime = strchr (buf, '<'); - apopend = apoptime ? strchr (apoptime, '>') : NULL; - if (apopend) { - store->apop_timestamp = g_strndup (apoptime, - apopend - apoptime + 1); - memmove (apoptime, apopend + 1, strlen (apopend + 1)); + if (buf) { + apoptime = strchr (buf, '<'); + apopend = apoptime ? strchr (apoptime, '>') : NULL; + if (apopend) { + store->apop_timestamp = + g_strndup (apoptime, apopend - apoptime + 1); + memmove (apoptime, apopend + 1, strlen (apopend + 1)); + } + store->implementation = buf; } - store->implementation = buf; /* Check extensions */ store->login_delay = -1; |