2021-05-14 18:54:56

by Steve Grubb

[permalink] [raw]
Subject: [Bluez PATCH 4/6] Fix leaks in profiles


g_new0 allocates memory that must be freed

---
profiles/audio/avrcp.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c
index c6a342ee3..58d30b24d 100644
--- a/profiles/audio/avrcp.c
+++ b/profiles/audio/avrcp.c
@@ -3508,8 +3508,10 @@ static struct avrcp_player *create_ct_player(struct avrcp *session,
path = device_get_path(session->dev);

mp = media_player_controller_create(path, id);
- if (mp == NULL)
+ if (mp == NULL) {
+ g_free(player);
return NULL;
+ }

media_player_set_callbacks(mp, &ct_cbs, player);
player->user_data = mp;
--
2.31.1