aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-07-28 15:29:00 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-07-28 15:29:00 +0800
commit338375efacaf594ab9759845ce88fbf8ea6a0f4b (patch)
tree90ef13906eccaf4b35bd9c2918bda74d9dcc98cb /mail
parentc5f7464467beeb50c932b5ee1392951103b28ac8 (diff)
downloadgsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar.gz
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar.bz2
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar.lz
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar.xz
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.tar.zst
gsoc2013-evolution-338375efacaf594ab9759845ce88fbf8ea6a0f4b.zip
** Fix for bug #543532
2008-07-28 Milan Crha <mcrha@redhat.com> ** Fix for bug #543532 * em-folder-tree-model.c: (em_folder_tree_model_remove_store_info): Let free memory when we are done with it, not before. svn path=/trunk/; revision=35850
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-folder-tree-model.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 12c745f9d9..7e7a32c2d0 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,12 @@
2008-07-28 Milan Crha <mcrha@redhat.com>
+ ** Fix for bug #543532
+
+ * em-folder-tree-model.c: (em_folder_tree_model_remove_store_info):
+ Let free memory when we are done with it, not before.
+
+2008-07-28 Milan Crha <mcrha@redhat.com>
+
** Fix for bug #256540
* mail-dialogs.glade: (message_security_dialog):
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c
index 7037479c96..eb6191199e 100644
--- a/mail/em-folder-tree-model.c
+++ b/mail/em-folder-tree-model.c
@@ -882,8 +882,9 @@ em_folder_tree_model_remove_store_info (EMFolderTreeModel *model, CamelStore *st
if (!(si = g_hash_table_lookup (model->store_hash, store)))
return;
- g_hash_table_remove (model->store_hash, si->store);
g_hash_table_remove (model->account_hash, si->account);
+ /* store_hash owns and frees the si structure, thus free it after done with it */
+ g_hash_table_remove (model->store_hash, si->store);
}