On Tue, 5 Dec 2017, Dan Carpenter wrote: > Smatch complains that "len" is uninitialized if xenbus_read() fails so > let's add some error handling. > > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx> > diff --git a/drivers/xen/pvcalls-front.c b/drivers/xen/pvcalls-front.c > index 40caa92bff33..afa3f1b5d807 100644 > --- a/drivers/xen/pvcalls-front.c > +++ b/drivers/xen/pvcalls-front.c > @@ -1128,6 +1128,8 @@ static int pvcalls_front_probe(struct xenbus_device *dev, > } > > versions = xenbus_read(XBT_NIL, dev->otherend, "versions", &len); > + if (IS_ERR(versions)) > + return PTR_ERR(versions); > if (!len) > return -EINVAL; > if (strcmp(versions, "1")) { > -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html