aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-08 21:08:21 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-08 21:09:55 +0800
commitd5dae027a8372499663348441e743c0183989400 (patch)
treeb16d6ca82dc818f85c81cc0bae1947a37ef00160
parent0e2c8c85f81b9638213cdd8a2575807144c7fc24 (diff)
downloadgsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.gz
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.bz2
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.lz
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.xz
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.zst
gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.zip
Bug 629049 - Memory leak in e_composer_pose_header_set_account()
-rw-r--r--composer/e-composer-post-header.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/composer/e-composer-post-header.c b/composer/e-composer-post-header.c
index 3d79c9ca2c..be7e57727e 100644
--- a/composer/e-composer-post-header.c
+++ b/composer/e-composer-post-header.c
@@ -91,6 +91,7 @@ composer_post_header_set_base_url (EComposerPostHeader *header)
url = camel_url_to_string (camel_url, CAMEL_URL_HIDE_ALL);
camel_url_free (camel_url);
+ g_free (header->priv->base_url);
header->priv->base_url = url;
}