[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAMpxmJU+Uh_oBqmCWmdpVQv52Duu6A3c+RGiL=tOYkqFUoX0ag@mail.gmail.com>
Date: Mon, 25 Mar 2019 09:28:43 +0100
From: Bartosz Golaszewski <bgolaszewski@...libre.com>
To: Andrew Jeffery <andrew@...id.au>
Cc: Kangjie Lu <kjlu@....edu>, pakki001@....edu,
Linus Walleij <linus.walleij@...aro.org>,
Joel Stanley <joel@....id.au>,
linux-gpio <linux-gpio@...r.kernel.org>,
arm-soc <linux-arm-kernel@...ts.infradead.org>,
linux-aspeed@...ts.ozlabs.org, LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] gpio: fix a potential NULL pointer dereference
pon., 25 mar 2019 o 00:12 Andrew Jeffery <andrew@...id.au> napisaĆ(a):
>
>
>
> On Mon, 25 Mar 2019, at 09:40, Kangjie Lu wrote:
> > In case devm_kzalloc, the patch returns ENOMEM to avoid potential
> > NULL pointer dereference.
> >
> > Signed-off-by: Kangjie Lu <kjlu@....edu>
>
> Reviewed-by: Andrew Jeffery <andrew@...id.au>
>
> > ---
> > drivers/gpio/gpio-aspeed.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c
> > index 854bce4fb9e7..217507002dbc 100644
> > --- a/drivers/gpio/gpio-aspeed.c
> > +++ b/drivers/gpio/gpio-aspeed.c
> > @@ -1224,6 +1224,8 @@ static int __init aspeed_gpio_probe(struct
> > platform_device *pdev)
> >
> > gpio->offset_timer =
> > devm_kzalloc(&pdev->dev, gpio->chip.ngpio, GFP_KERNEL);
> > + if (!gpio->offset_timer)
> > + return -ENOMEM;
> >
> > return aspeed_gpio_setup_irqs(gpio, pdev);
> > }
> > --
> > 2.17.1
> >
> >
Applied to fixes.
Bart
Powered by blists - more mailing lists