From dbd47e0c6cf83168e5d4f4f7b850d9bc728a175f Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Wed, 27 Nov 2019 22:56:30 -0800 Subject: binding: pbap: add missing return after afb_req_fail call To avoid calling afb_req_success after failure return after the afb_req_fail call in contacts verb. Bug-AGL: SPEC-2630 Change-Id: I2d521d7c04a4be7dd49e8a63cf1ac267de636de8 Signed-off-by: Matt Ranostay --- binding/bluetooth-pbap-binding.c | 1 + 1 file changed, 1 insertion(+) (limited to 'binding') diff --git a/binding/bluetooth-pbap-binding.c b/binding/bluetooth-pbap-binding.c index 13421e5..8274f05 100644 --- a/binding/bluetooth-pbap-binding.c +++ b/binding/bluetooth-pbap-binding.c @@ -370,6 +370,7 @@ void contacts(afb_req_t request) jresp = json_tokener_parse(cached); } else { afb_req_fail(request, "no imported contacts", NULL); + return; } afb_req_success(request, jresp, "contacts"); -- cgit 1.2.3-korg