netfilter: nfnetlink_queue: fix error return code in nfnetlink_queue_init()
Fix to return a negative error code from the error handling case instead of 0, as returned elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
committed by
Pablo Neira Ayuso
parent
130549fed8
commit
558724a5b2
@@ -1062,8 +1062,10 @@ static int __init nfnetlink_queue_init(void)
|
|||||||
|
|
||||||
#ifdef CONFIG_PROC_FS
|
#ifdef CONFIG_PROC_FS
|
||||||
if (!proc_create("nfnetlink_queue", 0440,
|
if (!proc_create("nfnetlink_queue", 0440,
|
||||||
proc_net_netfilter, &nfqnl_file_ops))
|
proc_net_netfilter, &nfqnl_file_ops)) {
|
||||||
|
status = -ENOMEM;
|
||||||
goto cleanup_subsys;
|
goto cleanup_subsys;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
register_netdevice_notifier(&nfqnl_dev_notifier);
|
register_netdevice_notifier(&nfqnl_dev_notifier);
|
||||||
|
Reference in New Issue
Block a user