p54spi: fix potential null deref in p54spi.c
authorDan Carpenter <error27@gmail.com>
Sun, 19 Jul 2009 19:26:13 +0000 (21:26 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 21 Jul 2009 19:59:48 +0000 (15:59 -0400)
Fix a potential NULL dereference bug during
error handling in p54spi_probe.

This bug was discovered by smatch:
(http://repo.or.cz/w/smatch.git).

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Christian Lamparter <chunkeey@web.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/p54/p54spi.c

index 83116ba..72c7dbd 100644 (file)
@@ -635,7 +635,7 @@ static int __devinit p54spi_probe(struct spi_device *spi)
 
        hw = p54_init_common(sizeof(*priv));
        if (!hw) {
-               dev_err(&priv->spi->dev, "could not alloc ieee80211_hw");
+               dev_err(&spi->dev, "could not alloc ieee80211_hw");
                return -ENOMEM;
        }