Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
0db061ae
Commit
0db061ae
authored
Nov 19, 2018
by
Witold Krecicki
Committed by
Mark Andrews
Nov 22, 2018
Browse files
Fix a small memleak in delv
(cherry picked from commit
d00b3f47
)
parent
f1ad5bcc
Pipeline
#7022
passed with stages
in 15 minutes and 51 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
bin/delv/delv.c
View file @
0db061ae
...
...
@@ -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
Markdown
is supported
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