diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-04-05 14:06:29 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-04-05 22:56:30 +0200 |
commit | b832da56024b33e6c7f06f766c59d90e4f377a9b (patch) | |
tree | 7536e2f5b457d8626a5d242a82bffe4f31fd0421 /samples | |
parent | 9188dbaed68a4b23dc96eba165265c08caa7dc2a (diff) | |
download | linux-stable-b832da56024b33e6c7f06f766c59d90e4f377a9b.tar.gz linux-stable-b832da56024b33e6c7f06f766c59d90e4f377a9b.tar.bz2 linux-stable-b832da56024b33e6c7f06f766c59d90e4f377a9b.zip |
HID: logitech-hidpp: fix error return code
Return a negative error code on failure.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'samples')
0 files changed, 0 insertions, 0 deletions