diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-12-08 16:09:01 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-12-08 16:09:01 +0800 |
commit | cd622d600ec180de75830913f7284d8d66370493 (patch) | |
tree | 7042123d85779312579e3a55a7abe62c37cb6ac2 /shell/e-shell-window.c | |
parent | e7a430163104edf067865306cdc1b5192bb08d4c (diff) | |
download | gsoc2013-evolution-cd622d600ec180de75830913f7284d8d66370493.tar.gz gsoc2013-evolution-cd622d600ec180de75830913f7284d8d66370493.tar.zst gsoc2013-evolution-cd622d600ec180de75830913f7284d8d66370493.zip |
Jeff Cai ** Fix for bug #563077 (Don't pass NULL to gtk_icon_info_get_filename(), fixes a crash if the gnome-settings-daemon is not running).
svn path=/trunk/; revision=36844
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index f2eb6bf86d..c533967c77 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -796,7 +796,7 @@ setup_widgets (EShellWindow *window) info->icon_name, width, 0); g_string_append_printf(xml, "\" pixtype=\"filename\" pixname=\"%s\"/>" "</placeholder></submenu></submenu>\n", - gtk_icon_info_get_filename (icon_info)); + icon_info ? gtk_icon_info_get_filename (icon_info) : ""); gtk_icon_info_free (icon_info); bonobo_ui_component_set_translate (e_shell_window_peek_bonobo_ui_component (window), "/menu", |