aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-send-recv.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-01-24 05:23:35 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-24 05:23:35 +0800
commite31cd9c18fe326dae5fe4c0b26a47cc75448a61c (patch)
tree5bb4a61b8101dc43a1c41f3cb56d80bb52007d4b /mail/mail-send-recv.c
parent62a7c2c37017f209e2d9be12cf5ce19c16cb91d2 (diff)
downloadgsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar.gz
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar.bz2
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar.lz
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar.xz
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.tar.zst
gsoc2013-evolution-e31cd9c18fe326dae5fe4c0b26a47cc75448a61c.zip
Make sure the source->url is not NULL (which is perfectly valid).
2001-01-23 Jeffrey Stedfast <fejj@ximian.com> * mail-send-recv.c (build_dialogue): Make sure the source->url is not NULL (which is perfectly valid). svn path=/trunk/; revision=7756
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r--mail/mail-send-recv.c28
1 files changed, 27 insertions, 1 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index 0762733bf2..88dabcae55 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -1,3 +1,24 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Authors: Michael Zucchi <NotZed@ximian.com>
+ *
+ * Copyright 2001 Ximian, Inc. (www.ximian.com)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ *
+ */
#include <stdio.h>
#include <string.h>
@@ -170,7 +191,12 @@ static struct _send_data *build_dialogue(GSList *sources, CamelFolder *outbox, c
row = 0;
while (sources) {
MailConfigService *source = sources->data;
-
+
+ if (!source->url) {
+ sources = sources->next;
+ continue;
+ }
+
info = g_malloc0(sizeof(*info));
/* imap is handled differently */
if (!strncmp(source->url, "imap:", 5))