From 3bbfb37bb4572a110122b1a83e21261108a65460 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 21 Apr 2016 17:49:30 +0200 Subject: manages reference counting for events MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Events are sent to an unknown count of receivers. For this reason, the function push should not consume the json object given. Change-Id: Ie6c60074bd3822e7107d670f905cc86f56f826bf Signed-off-by: José Bollo --- plugins/samples/HelloWorld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/samples') diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index ec060e97..2714ef4e 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -54,7 +54,7 @@ static void pingBug (struct afb_req request) static void pingEvent(struct afb_req request) { json_object *query = afb_req_json(request); - afb_evmgr_push(afb_daemon_get_evmgr(interface->daemon), "event", json_object_get(query)); + afb_evmgr_push(afb_daemon_get_evmgr(interface->daemon), "event", query); ping(request, json_object_get(query), "event"); } -- cgit 1.2.3-korg