diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-08 21:08:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-08 21:09:55 +0800 |
commit | d5dae027a8372499663348441e743c0183989400 (patch) | |
tree | b16d6ca82dc818f85c81cc0bae1947a37ef00160 /composer | |
parent | 0e2c8c85f81b9638213cdd8a2575807144c7fc24 (diff) | |
download | gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.gz gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.tar.zst gsoc2013-evolution-d5dae027a8372499663348441e743c0183989400.zip |
Bug 629049 - Memory leak in e_composer_pose_header_set_account()
Diffstat (limited to 'composer')
-rw-r--r-- | composer/e-composer-post-header.c | 1 |
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; } |