Re: [PATCH] Misc: eeprom - Fix possible NULL derefrence.

From: Greg Kroah-Hartman
Date: Mon Jan 30 2017 - 14:38:03 EST


On Fri, Jan 27, 2017 at 04:42:31PM +0530, Shailendra Verma wrote:
> of_match_device could return NULL, and so can cause a NULL
> pointer dereference later.
>
> Signed-off-by: Shailendra Verma <shailendra.v@xxxxxxxxxxx>
> ---
> drivers/misc/eeprom/eeprom_93xx46.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/misc/eeprom/eeprom_93xx46.c b/drivers/misc/eeprom/eeprom_93xx46.c
> index 94cc035..6555975 100644
> --- a/drivers/misc/eeprom/eeprom_93xx46.c
> +++ b/drivers/misc/eeprom/eeprom_93xx46.c
> @@ -381,6 +381,11 @@ static int eeprom_93xx46_probe_dt(struct spi_device *spi)
> enum of_gpio_flags of_flags;
> int ret;
>
> + if (!of_id) {
> + dev_err(&spi->dev, "Error: No device match found\n");
> + return -ENODEV;
> + }
> +

Also dropped due to this not being possible.

greg k-h