Skip to content

Commit

Permalink
ALSA: firewire-digi00x: prevent potential use after free
Browse files Browse the repository at this point in the history
[ Upstream commit c0e72058d5e21982e61a29de6b098f7c1f0db498 ]

This code was supposed to return an error code if init_stream()
failed, but it instead freed dg00x->rx_stream and returned success.
This potentially leads to a use after free.

Fixes: 9a08067 ("ALSA: firewire-digi00x: support AMDTP domain")
Signed-off-by: Dan Carpenter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
Dan Carpenter authored and gregkh committed May 24, 2023
1 parent ea9c758 commit ee1a221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sound/firewire/digi00x/digi00x-stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,10 @@ int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x)
return err;

err = init_stream(dg00x, &dg00x->tx_stream);
if (err < 0)
if (err < 0) {
destroy_stream(dg00x, &dg00x->rx_stream);
return err;
}

err = amdtp_domain_init(&dg00x->domain);
if (err < 0) {
Expand Down

0 comments on commit ee1a221

Please sign in to comment.