From 4ce156ab5a105682005b33d6636bf7db87f05bcb Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Mon, 30 Jan 2006 11:54:27 +0000 Subject: Use g_list_delete_link() instead of g_list_remove_link() + 2006-01-30 Kjartan Maraas * tools/evolution-launch-composer.c: (do_send): Use g_list_delete_link() instead of g_list_remove_link() + g_list_free_1(). * tools/killev.c: mark a couple vars static and remove a stray semi-colon. svn path=/trunk/; revision=31370 --- tools/evolution-launch-composer.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tools/evolution-launch-composer.c') diff --git a/tools/evolution-launch-composer.c b/tools/evolution-launch-composer.c index 65745d95b6..ac152dcc20 100644 --- a/tools/evolution-launch-composer.c +++ b/tools/evolution-launch-composer.c @@ -162,7 +162,6 @@ do_send (GNOME_Evolution_Composer composer_server) while (attachments) { attachment_t *attachment = attachments->data; - GList *temp; attach_data = GNOME_Evolution_Composer_AttachmentData__alloc(); attach_data->_maximum = attach_data->_length = attachment->size; @@ -187,9 +186,7 @@ do_send (GNOME_Evolution_Composer composer_server) free_attachment (attachment); - temp = attachments; - attachments = g_list_remove_link (attachments, attachments); - g_list_free_1 (temp); + attachments = g_list_delete_link (attachments, attachments); } to_list = GNOME_Evolution_Composer_RecipientList__alloc (); -- cgit v1.2.3