aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-shell-component.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-07-21 17:13:35 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-07-21 17:13:35 +0800
commitad3fd1d471c7cc32de1e6a2697e04a9276165a2c (patch)
treebd0769c8bc30312be8ddd8a1ed56e4c0c86f7f0a /shell/evolution-shell-component.c
parent7d6ff2410ae4d929a345fa3fbc16349819f74f5c (diff)
downloadgsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar.gz
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar.bz2
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar.lz
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar.xz
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.tar.zst
gsoc2013-evolution-ad3fd1d471c7cc32de1e6a2697e04a9276165a2c.zip
Prevent a crash by avoiding calling the populate_folder_context_menu
function when NULL. (Ooops, I forgot this.) svn path=/trunk/; revision=4253
Diffstat (limited to 'shell/evolution-shell-component.c')
-rw-r--r--shell/evolution-shell-component.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c
index c3560b2776..e5d2d9edda 100644
--- a/shell/evolution-shell-component.c
+++ b/shell/evolution-shell-component.c
@@ -280,6 +280,9 @@ impl_ShellComponent_populate_folder_context_menu (PortableServer_Servant servant
shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object);
priv = shell_component->priv;
+ if (priv->populate_folder_context_menu_fn == NULL)
+ return;
+
uih = bonobo_ui_handler_new ();
bonobo_ui_handler_set_container (uih, corba_uih);