From cbf5d8844706cd7f83ba4ed06a2f2ce0028c2d79 Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Wed, 15 Jul 2015 13:50:22 +0200 Subject: [PATCH] filestore: use SCFree instead of free --- src/log-filestore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.2