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
a1c36d5e
Commit
a1c36d5e
authored
Nov 22, 2018
by
Mark Andrews
Browse files
Merge branch '712-memleak-in-delv-v9_12' into 'v9_12'
Fix a small memleak in delv See merge request
!1115
parents
f1ad5bcc
0db061ae
Pipeline
#7063
passed with stages
in 8 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bin/delv/delv.c
View file @
a1c36d5e
...
...
@@ -765,7 +765,14 @@ setup_dnsseckeys(dns_client_t *client) {
if
(
dlv_validation
)
dns_client_setdlv
(
client
,
dns_rdataclass_in
,
dlv_anchor
);
cleanup:
if
(
bindkeys
!=
NULL
)
{
cfg_obj_destroy
(
parser
,
&
bindkeys
);
}
if
(
parser
!=
NULL
)
{
cfg_parser_destroy
(
&
parser
);
}
if
(
result
!=
ISC_R_SUCCESS
)
delv_log
(
ISC_LOG_ERROR
,
"setup_dnsseckeys: %s"
,
isc_result_totext
(
result
));
...
...
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