From d2c4632c3206e57d7412cbcbcccedf4e771a76f6 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 3 Feb 2016 08:07:45 +0100 Subject: [PATCH] Fix memory leak in render-test.c --- tests/output/render-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/output/render-test.c b/tests/output/render-test.c index 8ce0697910..fdfb2d20b6 100644 --- a/tests/output/render-test.c +++ b/tests/output/render-test.c @@ -116,6 +116,7 @@ main (int argc, char **argv) if (transpose) table = table_transpose (table); table_item_submit (table_item_create (table, NULL, NULL)); + free (tables); } else draw (input); -- 2.30.2