From: Eric Leblond Date: Fri, 4 Mar 2016 12:38:54 +0000 (+0100) Subject: output-file: fix memleak X-Git-Tag: suricata-3.0.1RC1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24e4edd118c697adb6a0839cfecd18868379dfb9;p=thirdparty%2Fsuricata.git output-file: fix memleak This fixes: Direct leak of 31856 byte(s) in 3982 object(s) allocated from: #0 0x4c396b in malloc (/opt/suricata-asan/bin/suricata+0x4c396b) #1 0xd7ff39 in OutputFileLogThreadInit /home/pmanev/sandnet-qa/stage/oisf/src/output-file.c:182:34 #2 0x106c255 in TmThreadsSlotPktAcqLoop /home/pmanev/sandnet-qa/stage/oisf/src/tm-threads.c:295:17 #3 0x7fbc9fcb3181 in start_thread /build/eglibc-3GlaMS/eglibc-2.19/nptl/pthread_create.c:312 --- diff --git a/src/output-file.c b/src/output-file.c index 0f1e852106..bd266c77ac 100644 --- a/src/output-file.c +++ b/src/output-file.c @@ -249,6 +249,8 @@ static TmEcode OutputFileLogThreadDeinit(ThreadVars *tv, void *thread_data) store = next_store; logger = logger->next; } + + SCFree(op_thread_data); return TM_ECODE_OK; }