]> git.karo-electronics.de Git - karo-tx-linux.git/commit
net/act_pedit: fix an error code
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 14 Jun 2017 10:29:31 +0000 (13:29 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 14 Jun 2017 19:24:18 +0000 (15:24 -0400)
commitc4f65b09b459c6f0ec27b1a1a65302f7fea5c96f
treedb762c6f2a74e89940d6e3221283637ab4a63c78
parentdb46a0e1be7eac45d0bb1bdcd438b8d47c920451
net/act_pedit: fix an error code

I'm reviewing static checker warnings where we do ERR_PTR(0), which is
the same as NULL.  I'm pretty sure we intended to return ERR_PTR(-EINVAL)
here.  Sometimes these bugs lead to a NULL dereference but I don't
immediately see that problem here.

Fixes: 71d0ed7079df ("net/act_pedit: Support using offset relative to the conventional network headers")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Amir Vadai <amir@vadai.me>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/act_pedit.c