From 7a5b5c31e4312fbf307c39b25d79a2610c5559ae Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 2 Jun 2000 06:34:58 +0000 Subject: Fun with purify. * providers/pop3/camel-pop3-store.c (pop3_connect): free msg on success as well as failure. (camel_pop3_command_get_additional_data): free buf after reading the last line ("."). * providers/pop3/camel-pop3-folder.c (get_message_by_uid): free body data after creating the memstream from it (which will copy the data). * providers/mbox/camel-mbox-folder.c (mbox_finalize): free summary and index paths. * camel-data-wrapper.c (finalize): unref the stream, if it exists. svn path=/trunk/; revision=3381 --- camel/camel-data-wrapper.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'camel/camel-data-wrapper.c') diff --git a/camel/camel-data-wrapper.c b/camel/camel-data-wrapper.c index 86be8117bf..94c222e9a4 100644 --- a/camel/camel-data-wrapper.c +++ b/camel/camel-data-wrapper.c @@ -108,6 +108,9 @@ finalize (GtkObject *object) if (camel_data_wrapper->mime_type) gmime_content_field_unref (camel_data_wrapper->mime_type); + if (camel_data_wrapper->stream) + gtk_object_unref (GTK_OBJECT (camel_data_wrapper->stream)); + GTK_OBJECT_CLASS (parent_class)->finalize (object); } -- cgit v1.2.3