diff options
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/camel-remote-store.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 59b47f70c4..430cfc7c99 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,9 @@ 2000-11-28 Dan Winship <danw@helixcode.com> + * camel-remote-store.c (remote_recv_line): Don't set exception to + g_strerror (errno) when nread == 0, because it won't have been + set. + * providers/pop3/camel-pop3-folder.c (pop3_finalize): Don't try to free things if they haven't been set yet. diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c index 7c64ab6a67..c69ba3591e 100644 --- a/camel/camel-remote-store.c +++ b/camel/camel-remote-store.c @@ -448,7 +448,8 @@ remote_recv_line (CamelRemoteStore *store, char **dest, CamelException *ex) g_free (ret); ret = NULL; camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, - g_strerror (errno)); + nread ? g_strerror (errno) : + _("Server disconnected.")); camel_service_disconnect (CAMEL_SERVICE (store), FALSE, NULL); return -1; |