diff options
Diffstat (limited to 'binding/bluetooth-util.c')
-rw-r--r-- | binding/bluetooth-util.c | 6 |
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) { |