netfilter: ctnetlink: do not erase error code with EINVAL
[ Upstream commit 77522ff02f333434612bd72df9b376f8d3836e4d ]
And be consistent in error management for both orig/reply filtering
Fixes: cb8aa9a3af
("netfilter: ctnetlink: add kernel side filtering for dump")
Signed-off-by: Florent Fourcot <florent.fourcot@wifirst.fr>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a3d829e5f3
commit
994065f6ef
|
@ -974,10 +974,8 @@ ctnetlink_alloc_filter(const struct nlattr * const cda[], u8 family)
|
|||
filter->family,
|
||||
&filter->zone,
|
||||
filter->reply_flags);
|
||||
if (err < 0) {
|
||||
err = -EINVAL;
|
||||
if (err < 0)
|
||||
goto err_filter;
|
||||
}
|
||||
}
|
||||
|
||||
return filter;
|
||||
|
|
Loading…
Reference in New Issue
Block a user