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
c8fc692f
Commit
c8fc692f
authored
Dec 16, 2000
by
Brian Wellington
Browse files
618. [bug] Queries to a signed zone could sometimes cause
an assertion failure.
parent
d06083ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c8fc692f
618. [bug] Queries to a signed zone could sometimes cause
an assertion failure.
617. [bug] When using dynamic update to add a new RR to an
existing RRset with a different TTL, the journal
entries generated from the update did not include
...
...
bin/named/query.c
View file @
c8fc692f
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: query.c,v 1.16
1
2000/12/1
1 19:19:12
bwelling Exp $ */
/* $Id: query.c,v 1.16
2
2000/12/1
6 02:30:58
bwelling Exp $ */
#include
<config.h>
...
...
@@ -1221,8 +1221,12 @@ query_addadditional(void *arg, dns_name_t *name, dns_rdatatype_t qtype) {
goto
addname
;
if
(
WANTDNSSEC
(
client
)
&&
sigrdataset
==
NULL
)
goto
addname
;
}
else
}
else
{
dns_rdataset_disassociate
(
rdataset
);
if
(
sigrdataset
!=
NULL
&&
dns_rdataset_isassociated
(
sigrdataset
))
dns_rdataset_disassociate
(
sigrdataset
);
}
}
result
=
dns_db_findrdataset
(
db
,
node
,
version
,
dns_rdatatype_aaaa
,
0
,
...
...
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