提交 015ba03c 编写于 作者: S Silviu-Mihai Popescu 提交者: Pablo Neira Ayuso

ipv4: netfilter: use PTR_RET instead of IS_ERR + PTR_ERR

This uses PTR_RET instead of IS_ERR and PTR_ERR in order to increase
readability.
Signed-off-by: NSilviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: NPablo Neira Ayuso <pablo@netfilter.org>
上级 2d2fd8c5
...@@ -48,9 +48,7 @@ static int __net_init arptable_filter_net_init(struct net *net) ...@@ -48,9 +48,7 @@ static int __net_init arptable_filter_net_init(struct net *net)
net->ipv4.arptable_filter = net->ipv4.arptable_filter =
arpt_register_table(net, &packet_filter, repl); arpt_register_table(net, &packet_filter, repl);
kfree(repl); kfree(repl);
if (IS_ERR(net->ipv4.arptable_filter)) return PTR_RET(net->ipv4.arptable_filter);
return PTR_ERR(net->ipv4.arptable_filter);
return 0;
} }
static void __net_exit arptable_filter_net_exit(struct net *net) static void __net_exit arptable_filter_net_exit(struct net *net)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册