Merge pull request #460 from jplitza/master
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 1 Sep 2015 07:34:14 +0000 (09:34 +0200)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 1 Sep 2015 07:34:14 +0000 (09:34 +0200)
luci-lib-jsonc: Fix memory leak in stringify()

libs/luci-lib-jsonc/src/jsonc.c

index 971fb12..b857c97 100644 (file)
@@ -106,6 +106,7 @@ static int json_stringify(lua_State *L)
                flags |= JSON_C_TO_STRING_PRETTY | JSON_C_TO_STRING_SPACED;
 
        lua_pushstring(L, json_object_to_json_string_ext(obj, flags));
+       json_object_put(obj);
        return 1;
 }