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/ChangeLog | 18 ++++++++++++++++++ camel/camel-data-wrapper.c | 3 +++ camel/providers/mbox/camel-mbox-folder.c | 2 ++ camel/providers/pop3/camel-pop3-folder.c | 1 + camel/providers/pop3/camel-pop3-store.c | 3 +++ 5 files changed, 27 insertions(+) diff --git a/camel/ChangeLog b/camel/ChangeLog index 539534804b..f643a09618 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,21 @@ +2000-06-02 Dan Winship + + 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. + 2000-06-01 Not Zed * camel-mime-part.c (construct_from_parser): For a message part, 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); } diff --git a/camel/providers/mbox/camel-mbox-folder.c b/camel/providers/mbox/camel-mbox-folder.c index c663824301..56af83a98b 100644 --- a/camel/providers/mbox/camel-mbox-folder.c +++ b/camel/providers/mbox/camel-mbox-folder.c @@ -131,7 +131,9 @@ mbox_finalize (GtkObject *object) CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER (object); g_free (mbox_folder->folder_file_path); + g_free (mbox_folder->summary_file_path); g_free (mbox_folder->folder_dir_path); + g_free (mbox_folder->index_file_path); GTK_OBJECT_CLASS (parent_class)->finalize (object); } diff --git a/camel/providers/pop3/camel-pop3-folder.c b/camel/providers/pop3/camel-pop3-folder.c index 45687e4f33..396bbc04f6 100644 --- a/camel/providers/pop3/camel-pop3-folder.c +++ b/camel/providers/pop3/camel-pop3-folder.c @@ -198,6 +198,7 @@ get_message_by_uid (CamelFolder *folder, const char *uid, CamelException *ex) } msgstream = camel_stream_mem_new_with_buffer (body, strlen (body)); + g_free (body); msg = camel_mime_message_new (); camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (msg), msgstream); diff --git a/camel/providers/pop3/camel-pop3-store.c b/camel/providers/pop3/camel-pop3-store.c index 4b4a4acbf7..813ab6eaf7 100644 --- a/camel/providers/pop3/camel-pop3-store.c +++ b/camel/providers/pop3/camel-pop3-store.c @@ -418,6 +418,7 @@ pop3_connect (CamelService *service, CamelException *ex) g_free (msg); pop3_disconnect (service, ex); } + g_free (msg); status = camel_pop3_command (store, &msg, "PASS %s", service->url->passwd); @@ -453,6 +454,7 @@ pop3_connect (CamelService *service, CamelException *ex) pop3_disconnect (service, ex); return FALSE; } + g_free (msg); service_class->connect (service, ex); return TRUE; @@ -613,6 +615,7 @@ camel_pop3_command_get_additional_data (CamelPop3Store *store, memmove (buf, buf + 1, strlen (buf)); g_ptr_array_add (data, buf); } + g_free (buf); if (status == CAMEL_POP3_OK) { /* Append an empty string to the end of the array -- cgit v1.2.3