forked from Minki/linux
ALSA: xen-front: freeing an error pointer
kfree() doesn't accept error pointers so I've set "str" to NULL on these
paths.
Fixes: fd3b36045c
("ALSA: xen-front: Read sound driver configuration from Xen store")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
986376b68d
commit
e46dcbb17d
@ -306,6 +306,7 @@ static int cfg_get_stream_type(const char *path, int index,
|
||||
str = xenbus_read(XBT_NIL, stream_path, XENSND_FIELD_TYPE, NULL);
|
||||
if (IS_ERR(str)) {
|
||||
ret = PTR_ERR(str);
|
||||
str = NULL;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
@ -347,6 +348,7 @@ static int cfg_stream(struct xen_snd_front_info *front_info,
|
||||
str = xenbus_read(XBT_NIL, stream_path, XENSND_FIELD_TYPE, NULL);
|
||||
if (IS_ERR(str)) {
|
||||
ret = PTR_ERR(str);
|
||||
str = NULL;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user