summaryrefslogtreecommitdiffstats
path: root/plugins/lib/bluetooth/hal-bt-mixer-link.c
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-09-11 18:32:28 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-10-08 15:57:27 +0200
commit43129f229bc970209695c9438bc70377ed085f1b (patch)
tree3b05c0d2269045935e4397534602a00bd9689a8a /plugins/lib/bluetooth/hal-bt-mixer-link.c
parent26e4b4b0d7ccc237fc0102103f9ad9ce8fe5c679 (diff)
Free afb call sync json returned object in Hal-Bt
Free forgotten application framework call sync json returned object in Hal-Bt plugin. Change-Id: Ic9680fd735154b21839fad93b4d13a7609009866 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to 'plugins/lib/bluetooth/hal-bt-mixer-link.c')
-rw-r--r--plugins/lib/bluetooth/hal-bt-mixer-link.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/lib/bluetooth/hal-bt-mixer-link.c b/plugins/lib/bluetooth/hal-bt-mixer-link.c
index 714c4e8..abbd1b7 100644
--- a/plugins/lib/bluetooth/hal-bt-mixer-link.c
+++ b/plugins/lib/bluetooth/hal-bt-mixer-link.c
@@ -65,9 +65,12 @@ int HalBtMixerLinkSetBtStreamingSettings(AFB_ApiT apiHandle, char *mixerApiName,
returnedError ? returnedError : "no_error_string",
MIXER_SET_STREAMED_BT_DEVICE_VERB,
mixerApiName);
+ json_object_put(returnedJ);
return -4;
}
+ json_object_put(returnedJ);
+
if(btStreamStatus)
AFB_ApiInfo(apiHandle, "Bluetooth streamed device changed to hci='%s' address='%s'", hci, btAddress);
else