From ab6e9734a8db600b9df97b63aa0ddb8b4d52650a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 2 Jul 2008 03:56:51 +0200 Subject: Fix a double free that was spotted by Damien Thébault MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libasyncns/asyncns.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libasyncns/asyncns.c b/libasyncns/asyncns.c index 038a511..e95ce37 100644 --- a/libasyncns/asyncns.c +++ b/libasyncns/asyncns.c @@ -1093,7 +1093,6 @@ void asyncns_cancel(asyncns_t *asyncns, asyncns_query_t* q) { asyncns->queries[i] = NULL; asyncns_freeaddrinfo(q->addrinfo); - free(q->addrinfo); free(q->host); free(q->serv); -- cgit