diff libpurple/protocols/bonjour/mdns_win32.c @ 21017:8b74b226e023

Fix a double-free that was not fun to track down. Fixes #3688.
author Daniel Atallah <daniel.atallah@gmail.com>
date Fri, 26 Oct 2007 04:52:56 +0000
parents 53691c081eab
children f119cd1cb47c
line wrap: on
line diff
--- a/libpurple/protocols/bonjour/mdns_win32.c	Fri Oct 26 00:13:18 2007 +0000
+++ b/libpurple/protocols/bonjour/mdns_win32.c	Fri Oct 26 04:52:56 2007 +0000
@@ -150,7 +150,6 @@
 	g_slist_free(hosts);
 
 	/* free the remaining args memory */
-	purple_dnsquery_destroy(args->query);
 	g_free(args->full_service_name);
 	g_free(args);
 }