From 0dc36a69a076c396d9115175e56b0258706f5a46 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Sun, 7 May 2017 14:20:29 +0100 Subject: [PATCH] [CritFix] Fix memory leak in fuzzy check --- src/plugins/fuzzy_check.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index 2240ac53bc..dbf88e54f9 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -2396,7 +2396,8 @@ fuzzy_generate_commands (struct rspamd_task *task, struct fuzzy_rule *rule, #endif end: if (res->len == 0) { - g_ptr_array_free (res, FALSE); + g_ptr_array_free (res, TRUE); + return NULL; } -- 2.47.3