aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree-model.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-12-05 06:40:41 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-12-05 06:40:41 +0800
commit7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e (patch)
treeef4f7bb6d39af1826d284224a8dc9b90b0c11ef6 /mail/em-folder-tree-model.c
parent2e7b29545026cd961e14972493b620645deeb0b5 (diff)
downloadgsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar.gz
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar.bz2
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar.lz
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar.xz
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.tar.zst
gsoc2013-evolution-7278ac2b56431724dd4d8afecd8bfb7fc0c72b6e.zip
Make sure folder_path is non-NULL ("Loading..." nodes will have a NULL
2003-12-04 Jeffrey Stedfast <fejj@ximian.com> * em-folder-tree-model.c (em_folder_tree_model_remove_folders): Make sure folder_path is non-NULL ("Loading..." nodes will have a NULL path). Fixes bug #51731. svn path=/trunk/; revision=23638
Diffstat (limited to 'mail/em-folder-tree-model.c')
-rw-r--r--mail/em-folder-tree-model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c
index cb82f7df7e..ada449660e 100644
--- a/mail/em-folder-tree-model.c
+++ b/mail/em-folder-tree-model.c
@@ -1072,7 +1072,7 @@ em_folder_tree_model_remove_folders (EMFolderTreeModel *model, struct _EMFolderT
COL_STRING_FOLDER_PATH, &folder_path,
COL_BOOL_IS_STORE, &is_store, -1);
- if ((row = g_hash_table_lookup (si->path_hash, folder_path))) {
+ if (folder_path && (row = g_hash_table_lookup (si->path_hash, folder_path))) {
g_hash_table_remove (si->path_hash, folder_path);
gtk_tree_row_reference_free (row);
}