From: Michael Graff Date: Sun, 8 Sep 2002 18:40:58 +0000 (+0000) Subject: detach from quota in an error case. I don't know if this is strictly needed, X-Git-Tag: v9.2.3rc1~104^2~347 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=ab7ce5eb6e9183419e1edd2a8a5ac9c440f8f08a;p=thirdparty%2Fbind9.git detach from quota in an error case. I don't know if this is strictly needed, but it makes sense. It is probably done later as well, but all places check for the pointer != NULL, so we'll be ok. --- diff --git a/bin/named/query.c b/bin/named/query.c index 2cd13c70bf7..4077bc2a150 100644 --- a/bin/named/query.c +++ b/bin/named/query.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: query.c,v 1.235 2002/09/06 03:47:56 marka Exp $ */ +/* $Id: query.c,v 1.236 2002/09/08 18:40:58 explorer Exp $ */ #include @@ -2349,6 +2349,8 @@ query_recurse(ns_client_t *client, dns_rdatatype_t qtype, dns_name_t *qdomain, NS_LOGMODULE_QUERY, ISC_LOG_WARNING, "no more recursive clients: %s", isc_result_totext(result)); + if (client->recursionquota != NULL) + isc_quota_detach(&client->recursionquota); return (result); } ns_client_recursing(client, killoldest);