Author: danw Date: Sun Jan 27 19:28:10 2008 New Revision: 1057 URL: http://svn.gnome.org/viewvc/libsoup?rev=1057&view=rev
Log: * libsoup/soup-message-headers.c (soup_message_headers_free): Fix leak introduced by patch for 511980. Modified: trunk/ChangeLog trunk/libsoup/soup-message-headers.c Modified: trunk/libsoup/soup-message-headers.c ============================================================================== --- trunk/libsoup/soup-message-headers.c (original) +++ trunk/libsoup/soup-message-headers.c Sun Jan 27 19:28:10 2008 @@ -72,6 +72,8 @@ { soup_message_headers_clear (hdrs); g_array_free (hdrs->array, TRUE); + if (hdrs->concat) + g_hash_table_destroy (hdrs->concat); g_slice_free (SoupMessageHeaders, hdrs); } _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.