diff options
Diffstat (limited to 'ctl-lib/ctl-lua.c')
-rw-r--r-- | ctl-lib/ctl-lua.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ctl-lib/ctl-lua.c b/ctl-lib/ctl-lua.c index 696a5de..4a32f26 100644 --- a/ctl-lib/ctl-lua.c +++ b/ctl-lib/ctl-lua.c @@ -521,6 +521,7 @@ static int LuaAfbServiceSync(lua_State* luaState) { lua_pushboolean(luaState, iserror); count += LuaPushArgument(source, responseJ); + json_object_put(responseJ); return count; // return count values } @@ -638,7 +639,7 @@ static int LuaAfbEventMake(lua_State* luaState) { } // event name should be the only argument - afbevt->name = strdup(lua_tostring(luaState, LUA_FIRST_ARG + 1)); + afbevt->name = strdupa(lua_tostring(luaState, LUA_FIRST_ARG + 1)); // create a new binder event afbevt->event = AFB_EventMake(source->api, afbevt->name); |