From abdc0072aa7c19380030ac78bee19a83d57393c3 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 26 Feb 2014 06:41:10 +0100 Subject: [PATCH] rule reload: fix unitialized memory access on error Coverity 709220 --- src/detect-engine.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/detect-engine.c b/src/detect-engine.c index ebf6202212..c35786d36d 100644 --- a/src/detect-engine.c +++ b/src/detect-engine.c @@ -499,6 +499,9 @@ static void *DetectEngineLiveRuleSwap(void *arg) DetectEngineThreadCtx *old_det_ctx[no_of_detect_tvs]; DetectEngineThreadCtx *new_det_ctx[no_of_detect_tvs]; ThreadVars *detect_tvs[no_of_detect_tvs]; + memset(old_det_ctx, 0x00, (no_of_detect_tvs * sizeof(DetectEngineThreadCtx))); + memset(new_det_ctx, 0x00, (no_of_detect_tvs * sizeof(DetectEngineThreadCtx))); + memset(detect_tvs, 0x00, (no_of_detect_tvs * sizeof(ThreadVars))); SCMutexUnlock(&tv_root_lock);