diff options
author | Devashish Sharma <dsharma@src.gnome.org> | 2006-02-23 18:56:07 +0800 |
---|---|---|
committer | Devashish Sharma <dsharma@src.gnome.org> | 2006-02-23 18:56:07 +0800 |
commit | d0ecf4969e7ef2d79e6b718db1929125f5e4bbb8 (patch) | |
tree | 2d4c40e700623af6d6c73a14bbe8c8a36a745b93 /addressbook/gui | |
parent | 24bf0218e8f93e904e0f8d0285806fc1506cbbb3 (diff) | |
download | gsoc2013-evolution-d0ecf4969e7ef2d79e6b718db1929125f5e4bbb8.tar.gz gsoc2013-evolution-d0ecf4969e7ef2d79e6b718db1929125f5e4bbb8.tar.zst gsoc2013-evolution-d0ecf4969e7ef2d79e6b718db1929125f5e4bbb8.zip |
Fix for Bug #332123.
svn path=/trunk/; revision=31567
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index fe56acec5d..2097eee1f6 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -2739,6 +2739,8 @@ update_preview_cb (GtkFileChooser *file_chooser, gpointer data) preview = GTK_WIDGET (data); filename = gtk_file_chooser_get_preview_filename (file_chooser); + if (filename == NULL) + return; pixbuf = gdk_pixbuf_new_from_file_at_size (filename, 128, 128, NULL); have_preview = (pixbuf != NULL); |