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
This commit is contained in:
JP Rosevear
2001-09-12 05:55:24 +00:00
committed by JP Rosevear
parent e65e502c54
commit 551fd78d30
2 changed files with 6 additions and 0 deletions

View File

@ -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

View File

@ -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;
}