diff options
author | Julia Lawall <julia@diku.dk> | 2008-07-21 09:58:11 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-07-29 16:55:05 -0400 |
commit | 80c42affad970c8ebc5ebec4681aef8dadf21c32 (patch) | |
tree | fa617323426286036bc51459f3d4c30747e24143 /drivers/net/wireless/b43legacy | |
parent | e7087a828f8714e464fff18d93618727530dfd89 (diff) |
drivers/net/wireless/ipw2100.c: Release mutex in error handling code
The mutex is released on a successful return, so it would seem that it
should be released on an error return as well.
The semantic patch finds this problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@@
expression l;
@@
mutex_lock(l);
... when != mutex_unlock(l)
when any
when strict
(
if (...) { ... when != mutex_unlock(l)
+ mutex_unlock(l);
return ...;
}
|
mutex_unlock(l);
)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43legacy')
0 files changed, 0 insertions, 0 deletions