diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-12 12:01:22 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-12 12:01:22 +0800 |
commit | 9d6d152922b4824d20b358b1ba97905d4d880960 (patch) | |
tree | 972632bd34ff30c7a6e9268118d7d8a094388f59 /shell/e-shell-view.c | |
parent | be75a3f952b826db123eb8a4e5e91d6164b96dd1 (diff) | |
download | gsoc2013-evolution-9d6d152922b4824d20b358b1ba97905d4d880960.tar.gz gsoc2013-evolution-9d6d152922b4824d20b358b1ba97905d4d880960.tar.zst gsoc2013-evolution-9d6d152922b4824d20b358b1ba97905d4d880960.zip |
Don't die if the folder_bar_popup is %NULL. Fixes #10922.
* e-shell-view.c
(reparent_storage_set_view_box_and_destroy_popup): Don't die if
the folder_bar_popup is %NULL. Fixes #10922.
svn path=/trunk/; revision=13613
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index edb6de1f75..85adff70c4 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -394,7 +394,8 @@ reparent_storage_set_view_box_and_destroy_popup (EShellView *shell_view) priv = shell_view->priv; - g_assert (priv->folder_bar_popup != NULL); + if (priv->folder_bar_popup == NULL) + return; gtk_widget_ref (priv->storage_set_view_box); gtk_container_remove (GTK_CONTAINER (priv->folder_bar_popup), priv->storage_set_view_box); |