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
5c47dd82
Commit
5c47dd82
authored
Nov 09, 2018
by
Mark Andrews
Committed by
Evan Hunt
Nov 15, 2018
Browse files
uninitalize memory read on error path
(cherry picked from commit
4eadebe2
)
parent
6b409b89
Pipeline
#6677
passed with stages
in 9 minutes and 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/dns/nta.c
View file @
5c47dd82
...
...
@@ -150,7 +150,7 @@ dns_ntatable_create(dns_view_t *view,
isc_task_detach
(
&
ntatable
->
task
);
cleanup_ntatable:
isc_mem_put
(
ntatable
->
view
->
mctx
,
ntatable
,
sizeof
(
*
ntatable
));
isc_mem_put
(
view
->
mctx
,
ntatable
,
sizeof
(
*
ntatable
));
return
(
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