Skip to content
GitLab
Menu
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
b0390aab
Commit
b0390aab
authored
Mar 20, 2001
by
Brian Wellington
Browse files
783. [bug] Following CNAMEs could cause an assertion failure
when either using an sdb database or under very rare conditions.
parent
fed2c6d1
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
b0390aab
783. [bug] Following CNAMEs could cause an assertion failure
when either using an sdb database or under very
rare conditions.
782. [feature] Implement the serial-query-rate option.
781. [func] Avoid error packet loops by dropping duplicate FORMERR
...
...
bin/named/query.c
View file @
b0390aab
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: query.c,v 1.19
0
2001/03/
19 22:59:0
3 bwelling Exp $ */
/* $Id: query.c,v 1.19
1
2001/03/
20 00:00:4
3 bwelling Exp $ */
#include <config.h>
...
...
@@ -2904,7 +2904,12 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
goto
cleanup
;
}
dns_name_init
(
tname
,
NULL
);
dns_name_clone
(
&
cname
.
cname
,
tname
);
result
=
dns_name_dup
(
&
cname
.
cname
,
client
->
mctx
,
tname
);
if
(
result
!=
ISC_R_SUCCESS
)
{
dns_message_puttempname
(
client
->
message
,
&
tname
);
dns_rdata_freestruct
(
&
cname
);
goto
cleanup
;
}
dns_rdata_freestruct
(
&
cname
);
query_maybeputqname
(
client
);
client
->
query
.
qname
=
tname
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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