mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
netlink: Delete an unnecessary check before the function call "module_put"
The module_put() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f6e1c91666
commit
92b80eb33c
@ -158,7 +158,7 @@ static int __netlink_remove_tap(struct netlink_tap *nt)
|
||||
out:
|
||||
spin_unlock(&netlink_tap_lock);
|
||||
|
||||
if (found && nt->module)
|
||||
if (found)
|
||||
module_put(nt->module);
|
||||
|
||||
return found ? 0 : -ENODEV;
|
||||
|
Loading…
Reference in New Issue
Block a user