Message ID | 20210512173750.63ef39a5@ivy-bridge (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix various memory leaks | expand |
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;
g_new0 allocates memory that must be freed Signed-off-by: Steve Grubb <sgrubb@redhat.com> --- profiles/audio/avrcp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)