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
d00b3f47
Commit
d00b3f47
authored
Nov 19, 2018
by
Witold Krecicki
Browse files
Fix a small memleak in delv
parent
0e555d7e
Pipeline
#6936
passed with stages
in 13 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bin/delv/delv.c
View file @
d00b3f47
...
...
@@ -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
));
...
...
Witold Krecicki
@wpk
mentioned in commit
0db061ae
·
Nov 21, 2018
mentioned in commit
0db061ae
mentioned in commit 0db061aef932b45d9e7d263d9351b8fd4cfd3ede
Toggle commit list
Witold Krecicki
@wpk
mentioned in commit
01bbb308
·
Nov 21, 2018
mentioned in commit
01bbb308
mentioned in commit 01bbb308b4e53965da1760e5a56cf94d80eeef0e
Toggle commit list
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