netfilter: nf_tables: nft_parse_register can return a negative value
Since commit6e1acfa387
("netfilter: nf_tables: validate registers coming from userspace.") nft_parse_register can return a negative value, but the function prototype is still returning an unsigned int. Fixes:6e1acfa387
("netfilter: nf_tables: validate registers coming from userspace.") Signed-off-by: Antoine Tenart <atenart@kernel.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
05ae2fba82
commit
6c6f9f31ec
@ -9363,7 +9363,7 @@ int nft_parse_u32_check(const struct nlattr *attr, int max, u32 *dest)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(nft_parse_u32_check);
|
EXPORT_SYMBOL_GPL(nft_parse_u32_check);
|
||||||
|
|
||||||
static unsigned int nft_parse_register(const struct nlattr *attr, u32 *preg)
|
static int nft_parse_register(const struct nlattr *attr, u32 *preg)
|
||||||
{
|
{
|
||||||
unsigned int reg;
|
unsigned int reg;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user