From 344e466eba3ec1c880f656ff2a49c4992d8a3fb1 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sun, 7 Jul 2019 22:42:57 +0200 Subject: [PATCH] tyfuzz/tytest: fix leak --- src/bin/tyfuzz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/tyfuzz.c b/src/bin/tyfuzz.c index 78120ec4..44ddf7ba 100644 --- a/src/bin/tyfuzz.c +++ b/src/bin/tyfuzz.c @@ -392,8 +392,8 @@ main(int argc EINA_UNUSED, char **argv EINA_UNUSED) tytest_shutdown(); #endif + config_del(_config); eina_shutdown(); - free(_config); return 0; }