From 1a090bbcd3ce95260ee5a69f0e21bc50f655b606 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Thu, 10 Jun 2010 21:15:43 +0300 Subject: [PATCH] Fix a few memory leaks in tests No changes to the actual library code. --- test/suites/api/test_dump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/suites/api/test_dump.c b/test/suites/api/test_dump.c index 97eb03e..f72f115 100644 --- a/test/suites/api/test_dump.c +++ b/test/suites/api/test_dump.c @@ -20,11 +20,13 @@ int main() result = json_dumps(json, 0); if(!result || strcmp(result, "{}")) fail("json_dumps failed"); + free(result); json_object_set_new(json, "foo", json_integer(5)); result = json_dumps(json, 0); if(!result || strcmp(result, "{\"foo\": 5}")) fail("json_dumps failed"); + free(result); json_decref(json); -- 2.1.4