diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2019-09-25 16:48:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-09-25 17:51:41 -0700 |
commit | 97b0b1ad58fab9f71b1a6bc056a09af6065ec3bc (patch) | |
tree | 13eca210e2b092ab56070e9574e3e05af7b94306 /ipc/mqueue.c | |
parent | a44f71a9ab99b509fec9d5a9f5c222debd89934f (diff) | |
download | linux-97b0b1ad58fab9f71b1a6bc056a09af6065ec3bc.tar.gz linux-97b0b1ad58fab9f71b1a6bc056a09af6065ec3bc.tar.bz2 linux-97b0b1ad58fab9f71b1a6bc056a09af6065ec3bc.zip |
ipc/mqueue.c: delete an unnecessary check before the macro call dev_kfree_skb()
dev_kfree_skb() input parameter validation, thus the test around the call
is not needed.
This issue was detected by using the Coccinelle software.
Link: http://lkml.kernel.org/r/07477187-63e5-cc80-34c1-32dd16b38e12@web.de
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Manfred Spraul <manfred@colorfullife.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/mqueue.c')
-rw-r--r-- | ipc/mqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/mqueue.c b/ipc/mqueue.c index 7c15729d9d25..b02eb842b42e 100644 --- a/ipc/mqueue.c +++ b/ipc/mqueue.c @@ -1333,7 +1333,7 @@ out_fput: out: if (sock) netlink_detachskb(sock, nc); - else if (nc) + else dev_kfree_skb(nc); return ret; |