diff options
author | Julia Lawall <[email protected]> | 2009-08-06 15:07:41 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2009-08-07 10:39:56 -0700 |
commit | 2198a64a7487aba036f71998ade8a6528070d32c (patch) | |
tree | 6130ef502a8bca51a37fef1343a7c720b3359f99 /net/lapb/lapb_iface.c | |
parent | 20de03dae54e10271ffd308654dfb4a117f4789d (diff) |
drivers/mmc: correct error-handling code
sdhci_alloc_host returns an ERR_PTR value in an error case instead of NULL.
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 = sdhci_alloc_host(...)
... 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: Anton Vorontsov <[email protected]>
Cc: Matt Fleming <[email protected]>
Cc: Ian Molton <[email protected]>
Cc: "Roberto A. Foglietta" <[email protected]>
Cc: Philip Langdale <[email protected]>
Cc: Pierre Ossman <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'net/lapb/lapb_iface.c')
0 files changed, 0 insertions, 0 deletions