diff options
author | Jedy Wang <jedy.wang@sun.com> | 2007-09-21 11:23:23 +0800 |
---|---|---|
committer | Jedy Jedy Wang <jedywang@src.gnome.org> | 2007-09-21 11:23:23 +0800 |
commit | 50ff474bf88324c6adf6dbe65c4bce9b4240d928 (patch) | |
tree | cae57833512d25d6f2cdb5953ece953100cfb761 | |
parent | 3ec3d65f68c5bc869e2d536ce517b6d1dc3da6bd (diff) | |
download | gsoc2013-evolution-50ff474bf88324c6adf6dbe65c4bce9b4240d928.tar.gz 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
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ca76346366..0b66e07e65 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2007-09-21 Jedy Wang <jedy.wang@sun.com> + + ** Fixes bug #476124. + + * calendar/gui/dialogs/comp-editor.c: Handle NULL pointer. + 2007-09-14 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #476231 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)); |