diff options
author | 2015-04-05 14:06:21 +0200 | |
---|---|---|
committer | 2015-04-07 15:21:54 -0400 | |
commit | 27d751bfa41bdc022d1357479ff67c6902c02c8c (patch) | |
tree | 8308ab4507f425d3c34b1298f6aab20c5bc1d8fe /tools/perf/scripts/python/call-graph-from-postgresql.py | |
parent | Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next (diff) | |
download | wireguard-linux-27d751bfa41bdc022d1357479ff67c6902c02c8c.tar.xz wireguard-linux-27d751bfa41bdc022d1357479ff67c6902c02c8c.zip |
wan: lmc: 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 'tools/perf/scripts/python/call-graph-from-postgresql.py')
0 files changed, 0 insertions, 0 deletions