diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2007-01-08 19:55:57 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2007-01-08 19:55:57 +0800 |
commit | cbcb065ce068b271c660fda907e168b691c54ab2 (patch) | |
tree | 813d4b2ebf47f00b4620f5b75eaac759895015b2 /calendar/gui | |
parent | f1b2a1422fd6542bbe2cca4013e0fe072b514f3f (diff) | |
download | gsoc2013-evolution-cbcb065ce068b271c660fda907e168b691c54ab2.tar.gz gsoc2013-evolution-cbcb065ce068b271c660fda907e168b691c54ab2.tar.zst gsoc2013-evolution-cbcb065ce068b271c660fda907e168b691c54ab2.zip |
Fixes #383027
svn path=/trunk/; revision=33121
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index aa77f91284..8cd149419b 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -255,7 +255,7 @@ itip_get_comp_attendee (ECalComponent *comp, ECal *client) account address if the email address is not set in the backend */ /* FIXME do we have a better way ? */ a = itip_addresses_get_default (); - address = g_strdup (a->id->address); + address = g_strdup ((a != NULL) ? a->id->address : ""); e_cal_component_free_attendee_list (attendees); return address; |