mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 23:25:38 +00:00
4640. [bug] If query_findversion failed in query_getdb due to
memory failure the error status was incorrectly discarded. [RT #45331]
This commit is contained in:
4
CHANGES
4
CHANGES
@@ -1,3 +1,7 @@
|
|||||||
|
4640. [bug] If query_findversion failed in query_getdb due to
|
||||||
|
memory failure the error status was incorrectly
|
||||||
|
discarded. [RT #45331]
|
||||||
|
|
||||||
4639. [bug] Fix a regression in --with-tuning reporting introduced
|
4639. [bug] Fix a regression in --with-tuning reporting introduced
|
||||||
by change 4488. [RT #45396]
|
by change 4488. [RT #45396]
|
||||||
|
|
||||||
|
@@ -1520,7 +1520,7 @@ query_getdb(ns_client_t *client, dns_name_t *name, dns_rdatatype_t qtype,
|
|||||||
|
|
||||||
dbversion = query_findversion(client, tdbp);
|
dbversion = query_findversion(client, tdbp);
|
||||||
if (dbversion == NULL) {
|
if (dbversion == NULL) {
|
||||||
result = ISC_R_NOMEMORY;
|
tresult = ISC_R_NOMEMORY;
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Be sure to return our database.
|
* Be sure to return our database.
|
||||||
|
Reference in New Issue
Block a user