aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin
diff options
context:
space:
mode:
authorJulia Lawall <[email protected]>2009-09-22 16:46:29 -0700
committerLinus Torvalds <[email protected]>2009-09-23 07:39:45 -0700
commit72445af880dbcd41cffd0d7b78a8c74da093e9eb (patch)
tree48bd4c2c98bda4d548b931482e4b000e13b88a4e /tools/perf/scripts/python/bin
parentd3c7a3f71a103abb7af5bdaf1adf6f693913a4a9 (diff)
drivers/rtc: correct error-handling code
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 <[email protected]> Acked-by: Wolfram Sang <[email protected]> Cc: David Brownell <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/bin')
0 files changed, 0 insertions, 0 deletions