diff options
author | Dan Winship <danw@src.gnome.org> | 2001-04-19 01:59:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-04-19 01:59:56 +0800 |
commit | 765e7194f1459f226b91ffc027024553e2d1a64b (patch) | |
tree | f14760fa835fcef15c764f819c1426506b4f56a3 /camel/providers/imap | |
parent | aa9071a09452e98b5e2a8842b3d2a0f288f2514d (diff) | |
download | gsoc2013-evolution-765e7194f1459f226b91ffc027024553e2d1a64b.tar.gz gsoc2013-evolution-765e7194f1459f226b91ffc027024553e2d1a64b.tar.zst gsoc2013-evolution-765e7194f1459f226b91ffc027024553e2d1a64b.zip |
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
Diffstat (limited to 'camel/providers/imap')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 |