From 4eadebe2b2feade839d8f178e6ddf8b4406d093a Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 9 Nov 2018 15:32:33 +1100 Subject: [PATCH 3046/3677] uninitalize memory read on error path --- lib/dns/nta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/nta.c b/lib/dns/nta.c index 73674b3..498b7f1 100644 --- a/lib/dns/nta.c +++ b/lib/dns/nta.c @@ -149,7 +149,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); } -- 1.8.3.1