From a29be5cf022681c99214c50bd167f6cc85f75831 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 21 Dec 2017 12:48:49 +0100 Subject: Fix memory leak Change-Id: I5ba04ecfb7809f9132e7958c5044b3d821830e8a Signed-off-by: Romain Forlot --- ctl-lib/ctl-lua.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ctl-lib/ctl-lua.c b/ctl-lib/ctl-lua.c index 33b797b..891e857 100644 --- a/ctl-lib/ctl-lua.c +++ b/ctl-lib/ctl-lua.c @@ -351,9 +351,11 @@ STATIC int LuaFormatMessage(lua_State* luaState, int verbosity, int level) { PrintMessage: // TBD: __file__ and __line__ should match LUA source code AFB_ApiVerbose(source->api, level,__FILE__,__LINE__,source->uid, "%s", message); + json_object_put(responseJ); return 0; // nothing return to lua OnErrorExit: // on argument to return (the error message) + json_object_put(responseJ); return 1; } @@ -393,6 +395,7 @@ STATIC int LuaAfbSuccess(lua_State* luaState) { AFB_ReqSucess (source->request, responseJ, NULL); + json_object_put(responseJ); return 0; OnErrorExit: @@ -409,6 +412,7 @@ STATIC int LuaAfbFail(lua_State* luaState) { AFB_ReqFail(source->request, source->uid, json_object_get_string(responseJ)); + json_object_put(responseJ); return 0; OnErrorExit: -- cgit 1.2.3-korg