diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2015-04-05 14:06:28 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-07 15:21:55 -0400 |
commit | a3786a5ff7551d03029219f93306106d0a6bdf55 (patch) | |
tree | db21a1f76bc383975c6b01c6aa1a6c6c385d3905 /net/ipv6/udp_impl.h | |
parent | 27d751bfa41bdc022d1357479ff67c6902c02c8c (diff) |
cosa: 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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp_impl.h')
0 files changed, 0 insertions, 0 deletions