aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-09-12 13:55:24 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-09-12 13:55:24 +0800
commit551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea (patch)
treef0802a50d388b4efc5433cd91d5f5b55de7dcaa9
parente65e502c544e11c97832936881c43b90fc74d320 (diff)
downloadgsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar.gz
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar.bz2
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar.lz
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar.xz
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.tar.zst
gsoc2013-evolution-551fd78d30546ddf97e4b15ad55b7a6ef21ab2ea.zip
null terminate the destination vector
2001-09-12 JP Rosevear <jpr@ximian.com> * evolution-composer.c (corba_recipientlist_to_destv): null terminate the destination vector svn path=/trunk/; revision=12773
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/evolution-composer.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 6461add96f..661ce24378 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-12 JP Rosevear <jpr@ximian.com>
+
+ * evolution-composer.c (corba_recipientlist_to_destv): null
+ terminate the destination vector
+
2001-09-10 Jeffrey Stedfast <fejj@ximian.com>
* evolution-composer.c (init): Don't call new_with_sig_file, it no
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c
index 2562c7c70d..41844a13dc 100644
--- a/composer/evolution-composer.c
+++ b/composer/evolution-composer.c
@@ -66,6 +66,7 @@ corba_recipientlist_to_destv (const GNOME_Evolution_Composer_RecipientList *cl)
e_destination_set_email (destv[i], recip->address);
}
+ destv[cl->_length] = NULL;
return destv;
}