2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

reset fctx->qmindcname and fctx->qminname after processing a delegation

This commit is contained in:
Mark Andrews
2019-09-12 16:03:41 +10:00
committed by Evan Hunt
parent 47d285a7d6
commit 622bef6aec

View File

@@ -9184,6 +9184,23 @@ rctx_referral(respctx_t *rctx) {
return (ISC_R_COMPLETE);
}
if ((fctx->options & DNS_FETCHOPT_QMINIMIZE) != 0) {
dns_name_free(&fctx->qmindcname, fctx->mctx);
dns_name_init(&fctx->qmindcname, NULL);
result = dns_name_dup(rctx->ns_name, fctx->mctx,
&fctx->qmindcname);
if (result != ISC_R_SUCCESS) {
rctx->result = result;
return (ISC_R_COMPLETE);
}
result= fctx_minimize_qname(fctx);
if (result != ISC_R_SUCCESS) {
rctx->result = result;
return (ISC_R_COMPLETE);
}
}
result = fcount_incr(fctx, true);
if (result != ISC_R_SUCCESS) {
rctx->result = result;