[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YcCETSO17GpP+3Hh@hovoldconsulting.com>
Date: Mon, 20 Dec 2021 14:25:33 +0100
From: Johan Hovold <johan@...nel.org>
To: Oliver Neukum <oneukum@...e.com>
Cc: Marc Ferland <ferlandm@...tus.ca>, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] gnss: add USB support
On Mon, Dec 20, 2021 at 01:49:23PM +0100, Oliver Neukum wrote:
>
> On 20.12.21 12:19, Johan Hovold wrote:
> > +static int gnss_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
> > + urb = usb_alloc_urb(0, GFP_KERNEL);
> > + if (!urb)
> > + goto err_put_gdev;
>
> The value of 'ret' here is the result of
> usb_find_common_endpoints(), hence 0 due to the prior test.
> > +err_free_buf:
> > + kfree(buf);
> > +err_free_urb:
> > + usb_free_urb(urb);
> > +err_put_gdev:
> > + gnss_put_device(gdev);
> > +err_free_gusb:
> > + kfree(gusb);
> > +
> > + return ret;
> Yet you return it in the error case and subsequent error cases..
Thanks for spotting that! I'll fix it up before applying.
Johan
Powered by blists - more mailing lists