diff options
author | Dan Winship <danw@src.gnome.org> | 2001-04-13 01:22:54 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-04-13 01:22:54 +0800 |
commit | 13acd44e987b0a08053f7970232ce3ca3fcf4fd0 (patch) | |
tree | 744bc79aa9cf6687758fbb71d594c7b49aa8bbfe /camel/providers | |
parent | 351be10bd9a2cba0a1527ed361df039e7d72c384 (diff) | |
download | gsoc2013-evolution-13acd44e987b0a08053f7970232ce3ca3fcf4fd0.tar.gz gsoc2013-evolution-13acd44e987b0a08053f7970232ce3ca3fcf4fd0.tar.zst gsoc2013-evolution-13acd44e987b0a08053f7970232ce3ca3fcf4fd0.zip |
Plug memory leaks.
* providers/imap/camel-imap-message-cache.c
(camel_imap_message_cache_remove):
* camel-url.c (camel_url_to_string): Plug memory leaks.
svn path=/trunk/; revision=9271
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-message-cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-message-cache.c b/camel/providers/imap/camel-imap-message-cache.c index 474a2f2f80..cd96409515 100644 --- a/camel/providers/imap/camel-imap-message-cache.c +++ b/camel/providers/imap/camel-imap-message-cache.c @@ -263,6 +263,7 @@ camel_imap_message_cache_remove (CamelImapMessageCache *cache, const char *uid) key = subparts->pdata[i]; path = g_strdup_printf ("%s/%s", cache->path, key); unlink (path); + g_free (path); stream = g_hash_table_lookup (cache->parts, key); if (stream) { camel_object_unhook_event (stream, "finalize", |