From: Parthasarathi Susarla Date: Mon, 25 Jul 2005 10:16:05 +0000 (+0000) Subject: fix a crash freeing attachment buffer X-Git-Tag: upstream/3.7.4~7165 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abb506537f0d5a7544c1461e1311dd8baca4cf34;p=platform%2Fupstream%2Fevolution-data-server.git fix a crash freeing attachment buffer 2005-07-25 Parthasarathi Susarla * camel-groupwise-folder.c: (groupwise_folder_item_to_msg) fix a crash freeing attachment buffer --- diff --git a/camel/providers/groupwise/ChangeLog b/camel/providers/groupwise/ChangeLog index db7e2bc..923aa54 100644 --- a/camel/providers/groupwise/ChangeLog +++ b/camel/providers/groupwise/ChangeLog @@ -1,3 +1,8 @@ +2005-07-25 Parthasarathi Susarla + + * camel-groupwise-folder.c: (groupwise_folder_item_to_msg) + fix a crash freeing attachment buffer + 2005-07-24 Parthasarathi Susarla * camel-groupwise-provider.c: diff --git a/camel/providers/groupwise/camel-groupwise-folder.c b/camel/providers/groupwise/camel-groupwise-folder.c index ae2d3a6..9612087 100644 --- a/camel/providers/groupwise/camel-groupwise-folder.c +++ b/camel/providers/groupwise/camel-groupwise-folder.c @@ -1231,8 +1231,8 @@ groupwise_folder_item_to_msg( CamelFolder *folder, camel_multipart_add_part (multipart, part); camel_object_unref (part); + g_free (attachment); } - g_free (attachment); } }