[Bluez PATCH 4/6] Fix leaks in profiles
From: Steve Grubb <hidden>
Date: 2021-05-12 22:41:12
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Steve Grubb <hidden>
Date: 2021-05-12 22:41:12
Subsystem:
the rest · Maintainer:
Linus Torvalds
g_new0 allocates memory that must be freed Signed-off-by: Steve Grubb <redacted> --- 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