Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
b551ee14
Commit
b551ee14
authored
Jun 23, 2017
by
Mark Andrews
Browse files
4640. [bug] If query_findversion failed in query_getdb due to
memory failure the error status was incorrectly discarded. [RT #45331]
parent
77a95c35
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b551ee14
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
by change 4488. [RT #45396]
...
...
bin/named/query.c
View file @
b551ee14
...
...
@@ -1520,7 +1520,7 @@ query_getdb(ns_client_t *client, dns_name_t *name, dns_rdatatype_t qtype,
dbversion
=
query_findversion
(
client
,
tdbp
);
if
(
dbversion
==
NULL
)
{
result
=
ISC_R_NOMEMORY
;
t
result
=
ISC_R_NOMEMORY
;
}
else
{
/*
* Be sure to return our database.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment