aboutsummaryrefslogtreecommitdiffstats
path: root/binding/bluetooth-util.c
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2018-11-04 14:49:18 -0800
committerMatt Ranostay <matt.ranostay@konsulko.com>2018-11-23 08:49:14 -0800
commita62b8f77807c73ad7ed64757f8f877d3651bb2c8 (patch)
treed9d7231f77793bbe3986bd86e1796cb48b6621b3 /binding/bluetooth-util.c
parent9161f8a0233e8e040a2dc4e89feba0897b56d8d0 (diff)
binding: bluetooth: fix interface removal event
Don't send adapter name in 'device' parameter on removal of bluetooth interface. Bug-AGL: SPEC-1630 Change-Id: I15cb4dcc791d36beb8e8b41993644cad331d3cae Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding/bluetooth-util.c')
-rw-r--r--binding/bluetooth-util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/binding/bluetooth-util.c b/binding/bluetooth-util.c
index 4740cda..963af82 100644
--- a/binding/bluetooth-util.c
+++ b/binding/bluetooth-util.c
@@ -1033,8 +1033,10 @@ void json_process_path(json_object *jresp, const char *path) {
g_free(tmp);
tmp = bluez_return_device(path);
- json_object_object_add(jresp, "device", json_object_new_string(tmp));
- g_free(tmp);
+ if (tmp) {
+ json_object_object_add(jresp, "device", json_object_new_string(tmp));
+ g_free(tmp);
+ }
}
gchar *return_bluez_path(afb_req_t request) {