From 8a5cea16bc9de4b12e04e6f9742db488415275b8 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Tue, 10 Jul 2007 18:41:03 +0000 Subject: Merged revisions 74374 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 (closes issue #10133) ................ r74374 | qwell | 2007-07-10 13:39:30 -0500 (Tue, 10 Jul 2007) | 13 lines Merged revisions 74373 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r74373 | qwell | 2007-07-10 13:37:23 -0500 (Tue, 10 Jul 2007) | 5 lines Use res_ndestroy on systems that have it. Otherwise, use res_nclose. This prevents a memleak on NetBSD - and possibly others. Issue 10133, patch by me, reported and tested by scw ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74375 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/dns.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main') diff --git a/main/dns.c b/main/dns.c index bb7827226..d92243561 100644 --- a/main/dns.c +++ b/main/dns.c @@ -229,7 +229,11 @@ int ast_search_dns(void *context, ret = 1; } #ifdef HAVE_RES_NINIT +#if HAVE_RES_NDESTROY + res_ndestroy(&dnsstate); +#else res_nclose(&dnsstate); +#endif #else #ifndef __APPLE__ res_close(); -- cgit v1.2.3