diff options
author | Holger Mickler <holger.mickler@web.de> | 2010-04-27 20:06:57 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-27 20:06:57 +0800 |
commit | ec2008c74600e15c4d4de30b78d8a6248f7549e2 (patch) | |
tree | 373c870894344fc26b002fbc9b23c436d996baa8 /calendar | |
parent | 7bbe63b9dab8a9a7bd023c8d061eaf60bf55df19 (diff) | |
download | gsoc2013-evolution-ec2008c74600e15c4d4de30b78d8a6248f7549e2.tar.gz gsoc2013-evolution-ec2008c74600e15c4d4de30b78d8a6248f7549e2.tar.zst gsoc2013-evolution-ec2008c74600e15c4d4de30b78d8a6248f7549e2.zip |
Bug #615384 - Use contact's free/busy URL only when not empty
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-meeting-store.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c index 8b9f02c5a5..35bd87f3e2 100644 --- a/calendar/gui/e-meeting-store.c +++ b/calendar/gui/e-meeting-store.c @@ -1285,6 +1285,11 @@ freebusy_async (gpointer data) default_fb_uri = g_strdup (fbd->fb_uri); fburi = g_strdup (e_meeting_attendee_get_fburi (attendee)); + if (fburi && !*fburi) { + g_free (fburi); + fburi = NULL; + } + if (fburi) { priv->num_queries++; start_async_read (fburi, fbd->qdata); |