aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-05-31 08:46:20 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-05-31 08:46:20 +0800
commitb84dbb018bd3c01f297755d20a2ee2dd3df55b07 (patch)
tree5182ec13d383ac53e15292ea347918d7253d8a3d /camel
parent74ae9178ab9e025463dd1d167282a0de65389a24 (diff)
downloadgsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar.gz
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar.bz2
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar.lz
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar.xz
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.tar.zst
gsoc2013-evolution-b84dbb018bd3c01f297755d20a2ee2dd3df55b07.zip
On error, don't leak the GByteArray buffer.
2002-05-30 Jeffrey Stedfast <fejj@ximian.com> * providers/imap/camel-imap-store.c (camel_imap_store_readline): On error, don't leak the GByteArray buffer. svn path=/trunk/; revision=17054
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/providers/imap/camel-imap-store.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 432aaa4ad7..5c024f3900 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,8 @@
2002-05-30 Jeffrey Stedfast <fejj@ximian.com>
+ * providers/imap/camel-imap-store.c (camel_imap_store_readline):
+ On error, don't leak the GByteArray buffer.
+
* providers/imap/camel-imap-folder.c (imap_rescan): Free the
response before checking for errors. I'm not sure this'll actually
fix the memory leak here, but it might? Certainly can't hurt.
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index dd73f084eb..1e6284b572 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -2269,6 +2269,7 @@ camel_imap_store_readline (CamelImapStore *store, char **dest, CamelException *e
g_strerror (errno));
camel_service_disconnect (CAMEL_SERVICE (store), FALSE, NULL);
+ g_byte_array_free (ba, TRUE);
return -1;
}