Message ID | 20180530103655.bnjzq2jpfrjjwvvj@kili.mountain (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 05/30/2018 01:36 PM, Dan Carpenter wrote: > kfree() doesn't accept error pointers so I've set "str" to NULL on these > paths. > > Fixes: fd3b36045c2c ("ALSA: xen-front: Read sound driver configuration from Xen store") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > > diff --git a/sound/xen/xen_snd_front_cfg.c b/sound/xen/xen_snd_front_cfg.c > index 38c7e1eefbb9..68dcd7d1f09e 100644 > --- a/sound/xen/xen_snd_front_cfg.c > +++ b/sound/xen/xen_snd_front_cfg.c > @@ -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; > } > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xenproject.org > https://lists.xenproject.org/mailman/listinfo/xen-devel Thank you for your patch, Reviewed-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
On Wed, 30 May 2018 13:14:58 +0200, Oleksandr Andrushchenko wrote: > > On 05/30/2018 01:36 PM, Dan Carpenter wrote: > > kfree() doesn't accept error pointers so I've set "str" to NULL on these > > paths. > > > > Fixes: fd3b36045c2c ("ALSA: xen-front: Read sound driver configuration from Xen store") > > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > > > > diff --git a/sound/xen/xen_snd_front_cfg.c b/sound/xen/xen_snd_front_cfg.c > > index 38c7e1eefbb9..68dcd7d1f09e 100644 > > --- a/sound/xen/xen_snd_front_cfg.c > > +++ b/sound/xen/xen_snd_front_cfg.c > > @@ -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; > > } > > > > > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@lists.xenproject.org > > https://lists.xenproject.org/mailman/listinfo/xen-devel > Thank you for your patch, > Reviewed-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> Applied now. Thanks. Takashi
diff --git a/sound/xen/xen_snd_front_cfg.c b/sound/xen/xen_snd_front_cfg.c index 38c7e1eefbb9..68dcd7d1f09e 100644 --- a/sound/xen/xen_snd_front_cfg.c +++ b/sound/xen/xen_snd_front_cfg.c @@ -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; }
kfree() doesn't accept error pointers so I've set "str" to NULL on these paths. Fixes: fd3b36045c2c ("ALSA: xen-front: Read sound driver configuration from Xen store") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>