summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bluetooth-common.c1
-rw-r--r--test/bt_unit_test.c7
2 files changed, 5 insertions, 3 deletions
diff --git a/src/bluetooth-common.c b/src/bluetooth-common.c
index f17bb6a..df83e97 100644
--- a/src/bluetooth-common.c
+++ b/src/bluetooth-common.c
@@ -3620,6 +3620,7 @@ done:
bt_gatt_client_handle_destroy);
client_s->services = svc_list;
+ g_free(prim_svc);
return BT_ERROR_NONE;
}
diff --git a/test/bt_unit_test.c b/test/bt_unit_test.c
index dffe4c5..48c3641 100644
--- a/test/bt_unit_test.c
+++ b/test/bt_unit_test.c
@@ -2452,9 +2452,6 @@ bool __bt_hps_client_svc_cb(int total,
index, total,
str ? str : "Unknown", uuid);
- g_free(str);
- g_free(uuid);
-
if (test_id == BT_UNIT_TEST_FUNCTION_HPS_CLIENT_PRINT_ALL) {
#ifdef ARCH64
ret = bt_gatt_service_foreach_characteristics(svc_handle,
@@ -2469,6 +2466,9 @@ bool __bt_hps_client_svc_cb(int total,
TC_PRT("bt_gatt_service_foreach_characteristics is failed : %d", ret);
}
}
+
+ g_free(str);
+ g_free(uuid);
return true;
}
@@ -2739,6 +2739,7 @@ bool __bt_gatt_included_service_cb(bt_gatt_attribute_h service,
bt_get_uuid_name(uuid, &name);
TC_PRT("uuid: %s [%s]", uuid, name);
+ g_free(value);
g_free(uuid);
g_free(name);
return true;