diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/evolution-composer.c | 1 |
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; } |