From 45c9b1565b45a0ea695a2af82136520a75b42c5b Mon Sep 17 00:00:00 2001 From: Sameer Kumar Date: Tue, 30 Jul 2024 11:06:59 +0530 Subject: [PATCH] This patch fixes SVACE issue. Issue ID: 225089 Change-Id: I7b577b6f3ad57d2f44895d64098e672b021fea24 Signed-off-by: Sameer Kumar --- src/bt-syspopup-m.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bt-syspopup-m.c b/src/bt-syspopup-m.c index fa486b7..6235c6c 100644 --- a/src/bt-syspopup-m.c +++ b/src/bt-syspopup-m.c @@ -2788,7 +2788,7 @@ static void __bluetooth_reset(app_control_h app_control, void *data) ret = app_control_export_as_bundle(app_control, &b); if (ret != 0) { BT_ERR("Failed to Convert the service handle to bundle data"); - free(b); + bundle_free(b); return; } -- 2.34.1