[PATCH] Use of uninitialized variable in drivers/net/depca.c
hi, this fixes coverity bug #888, where the variable dev is used uninitialized. I assume the programmer meant to use mdev, which is initialized. Compile tested only. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Родитель
5185c7c20a
Коммит
6a6bbd29a0
|
@ -1412,7 +1412,7 @@ static int __init depca_mca_probe(struct device *device)
|
|||
irq = 11;
|
||||
break;
|
||||
default:
|
||||
printk("%s: mca_probe IRQ error. You should never get here (%d).\n", dev->name, where);
|
||||
printk("%s: mca_probe IRQ error. You should never get here (%d).\n", mdev->name, where);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче