From: José Bollo Date: Wed, 23 Aug 2017 16:45:09 +0000 (+0200) Subject: afb-monitor: update hooks for tracing X-Git-Tag: eel/4.99.1~72 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=ffb6113d265615cf18d2348769403d727e9a1484;p=src%2Fapp-framework-binder.git afb-monitor: update hooks for tracing Updating hooks is needed (at the moment) after trace requests Signed-off-by: José Bollo --- diff --git a/src/afb-monitor.c b/src/afb-monitor.c index 369c5bf5..4bedc49d 100644 --- a/src/afb-monitor.c +++ b/src/afb-monitor.c @@ -345,13 +345,15 @@ static void f_trace(struct afb_req req) if (add) { rc = afb_trace_add(req, add, trace); if (rc) - return; + goto end; } if (drop) { rc = afb_trace_drop(req, drop, trace); if (rc) - return; + goto end; } afb_req_success(req, NULL, NULL); +end: + afb_apiset_update_hooks(main_apiset, NULL); }