[patch] rtc: use after free in pcf50633_rtc_probe()

From: Dan Carpenter
Date: Wed Nov 18 2009 - 03:30:30 EST


"rtc" is freed and then dereferenced on the next line. This patch fixes
that.

This is a resend. I have been offline for the last few months so I may
have missed a reply or something. Not sure what the status was.

regards,
dan carpenter

Signed-off-by: Dan Carpenter <error27@xxxxxxxxx>

--- orig/drivers/rtc/rtc-pcf50633.c 2009-07-17 16:21:52.000000000 +0300
+++ new/drivers/rtc/rtc-pcf50633.c 2009-07-17 16:22:56.000000000 +0300
@@ -291,8 +291,9 @@
&pcf50633_rtc_ops, THIS_MODULE);

if (IS_ERR(rtc->rtc_dev)) {
+ int ret = PTR_ERR(rtc->rtc_dev);
kfree(rtc);
- return PTR_ERR(rtc->rtc_dev);
+ return ret;
}

pcf50633_register_irq(rtc->pcf, PCF50633_IRQ_ALARM,
--
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/