From: Eric Leblond Date: Wed, 15 Jul 2015 11:50:22 +0000 (+0200) Subject: filestore: use SCFree instead of free X-Git-Tag: suricata-3.0RC1~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbf5d8844706cd7f83ba4ed06a2f2ce0028c2d79;p=thirdparty%2Fsuricata.git filestore: use SCFree instead of free --- diff --git a/src/log-filestore.c b/src/log-filestore.c index 8686a0a49f..4244b9a44f 100644 --- a/src/log-filestore.c +++ b/src/log-filestore.c @@ -417,7 +417,7 @@ static void LogFilestoreLogDeInitCtx(OutputCtx *output_ctx) { LogFileCtx *logfile_ctx = (LogFileCtx *)output_ctx->data; LogFileFreeCtx(logfile_ctx); - free(output_ctx); + SCFree(output_ctx); }