From 765e7194f1459f226b91ffc027024553e2d1a64b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 18 Apr 2001 17:59:56 +0000 Subject: Free base_url and storage_path. * providers/imap/camel-imap-store.c (camel_imap_store_finalize): Free base_url and storage_path. * providers/pop3/camel-pop3-store.c (finalize): Free the implementation string. (camel_pop3_command): Clarify documentation to mention that @ex isn't set (and *@ret is) on CAMEL_POP3_ERR. (connect_to_server): Set @ex properly on CAMEL_POP3_ERR. * providers/pop3/camel-pop3-folder.c (pop3_refresh_info, pop3_get_message): Set @ex properly on CAMEL_POP3_ERR. svn path=/trunk/; revision=9450 --- camel/providers/imap/camel-imap-store.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'camel/providers/imap/camel-imap-store.c') diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index d7aec42f2c..37eb99623c 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -143,6 +143,10 @@ camel_imap_store_finalize (CamelObject *object) } if (imap_store->namespace) g_free (imap_store->namespace); + if (imap_store->base_url) + g_free (imap_store->base_url); + if (imap_store->storage_path) + g_free (imap_store->storage_path); if (imap_store->current_folder) camel_object_unref (CAMEL_OBJECT (imap_store->current_folder)); #ifdef ENABLE_THREADS -- cgit v1.2.3