aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorJedy Wang <jedy.wang@sun.com>2007-09-21 11:23:23 +0800
committerJedy Jedy Wang <jedywang@src.gnome.org>2007-09-21 11:23:23 +0800
commit50ff474bf88324c6adf6dbe65c4bce9b4240d928 (patch)
treecae57833512d25d6f2cdb5953ece953100cfb761 /calendar/gui
parent3ec3d65f68c5bc869e2d536ce517b6d1dc3da6bd (diff)
downloadgsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.gz
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.bz2
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.lz
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.xz
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.zst
gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.zip
** Fixes bug #476124.
2007-09-21 Jedy Wang <jedy.wang@sun.com> ** Fixes bug #476124. * calendar/gui/dialogs/comp-editor.c: Handle NULL pointer. svn path=/trunk/; revision=34287
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/comp-editor.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index dec56852c7..d54c06347f 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -2362,6 +2362,8 @@ set_attachment_list (CompEditor *editor, GSList *attach_list)
/* get url sans protocol and add it to the bar.
* how to set the filename properly */
file_name = g_filename_from_uri (attach_filename, NULL, NULL);
+ if (!file_name)
+ continue;
if (g_stat (file_name, &statbuf) < 0) {
g_warning ("Cannot attach file %s: %s", file_name, g_strerror (errno));