mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
netfilter: nf_log: Remove NULL check
If 'logger' was NULL, there would be a direct jump to the label 'out', since it has already been checked for NULL, remove this unnecessary check. Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
506e65df52
commit
7e53e7f8ca
@ -181,7 +181,7 @@ int nf_logger_find_get(int pf, enum nf_log_type type)
|
||||
if (logger == NULL)
|
||||
goto out;
|
||||
|
||||
if (logger && try_module_get(logger->me))
|
||||
if (try_module_get(logger->me))
|
||||
ret = 0;
|
||||
out:
|
||||
rcu_read_unlock();
|
||||
|
Loading…
Reference in New Issue
Block a user