提交 0f925660 编写于 作者: T Takashi Sakamoto 提交者: Takashi Iwai

ALSA: dice: fix error path to destroy initialized stream data

In error path of snd_dice_stream_init_duplex(), stream data for incoming
packet can be left to be initialized.

This commit fixes it.

Fixes: 436b5abe ('ALSA: dice: handle whole available isochronous streams')
Cc: <stable@vger.kernel.org> # v4.6+
Signed-off-by: NTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 8a7d6003
...@@ -435,7 +435,7 @@ int snd_dice_stream_init_duplex(struct snd_dice *dice) ...@@ -435,7 +435,7 @@ int snd_dice_stream_init_duplex(struct snd_dice *dice)
err = init_stream(dice, AMDTP_IN_STREAM, i); err = init_stream(dice, AMDTP_IN_STREAM, i);
if (err < 0) { if (err < 0) {
for (; i >= 0; i--) for (; i >= 0; i--)
destroy_stream(dice, AMDTP_OUT_STREAM, i); destroy_stream(dice, AMDTP_IN_STREAM, i);
goto end; goto end;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册