[patch 02/26] drivers/message/i2o/pci.c: fix a use-after-free

From: Greg KH
Date: Tue Dec 13 2005 - 03:26:34 EST


-stable review patch. If anyone has any objections, please let us know.

------------------
From: Adrian Bunk <bunk@xxxxxxxxx>

The Coverity checker spotted this obvious use-after-free

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>
Signed-off-by: Markus Lidel <Markus.Lidel@xxxxxxxxxxxxxxxxx>
Signed-off-by: Chris Wright <chrisw@xxxxxxxx>
Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx>
---
drivers/message/i2o/pci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-2.6.14.3.orig/drivers/message/i2o/pci.c
+++ linux-2.6.14.3/drivers/message/i2o/pci.c
@@ -421,8 +421,8 @@ static int __devinit i2o_pci_probe(struc
i2o_pci_free(c);

free_controller:
- i2o_iop_free(c);
put_device(c->device.parent);
+ i2o_iop_free(c);

disable:
pci_disable_device(pdev);

--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/