Skip to content

Commit

Permalink
drivers/rtc: correct error-handling code
Browse files Browse the repository at this point in the history
This code is not executed before ds1307->rtc has been successfully
initialized to the result of calling rtc_device_register.  Thus the test
that ds1307->rtc is not NULL is always true.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@match exists@
expression x, E;
statement S1, S2;
@@

x = rtc_device_register(...)
... when != x = E
(
*  if (x == NULL || ...) S1 else S2
|
*  if (x == NULL && ...) S1 else S2
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Julia Lawall authored and torvalds committed Sep 23, 2009
1 parent d3c7a3f commit 72445af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/rtc/rtc-ds1307.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,8 +896,7 @@ static int __devinit ds1307_probe(struct i2c_client *client,
return 0;

exit_irq:
if (ds1307->rtc)
rtc_device_unregister(ds1307->rtc);
rtc_device_unregister(ds1307->rtc);
exit_free:
kfree(ds1307);
return err;
Expand Down

0 comments on commit 72445af

Please sign in to comment.