-stable review patch. If anyone has any objections, please let us know. ------------------ From: Adrian Bunk The Coverity checker spotted this obvious use-after-free Signed-off-by: Adrian Bunk Signed-off-by: Markus Lidel Signed-off-by: Chris Wright Signed-off-by: Greg Kroah-Hartman --- 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); --