mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 03:04:01 +08:00
usb: gadget: u_uac1: NULL dereference on error path
We should return here with an error code instead of continuing. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
fddedd8334
commit
29240e2392
@ -240,8 +240,11 @@ static int gaudio_open_snd_dev(struct gaudio *card)
|
|||||||
snd = &card->playback;
|
snd = &card->playback;
|
||||||
snd->filp = filp_open(fn_play, O_WRONLY, 0);
|
snd->filp = filp_open(fn_play, O_WRONLY, 0);
|
||||||
if (IS_ERR(snd->filp)) {
|
if (IS_ERR(snd->filp)) {
|
||||||
|
int ret = PTR_ERR(snd->filp);
|
||||||
|
|
||||||
ERROR(card, "No such PCM playback device: %s\n", fn_play);
|
ERROR(card, "No such PCM playback device: %s\n", fn_play);
|
||||||
snd->filp = NULL;
|
snd->filp = NULL;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
pcm_file = snd->filp->private_data;
|
pcm_file = snd->filp->private_data;
|
||||||
snd->substream = pcm_file->substream;
|
snd->substream = pcm_file->substream;
|
||||||
|
Loading…
Reference in New Issue
Block a user