mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
netfilter: nft_set_bitmap: incorrect bitmap size
priv->bitmap_size stores the real bitmap size, instead of the full
struct nft_bitmap object.
Fixes: 665153ff57 ("netfilter: nf_tables: add bitmap set type")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
@@ -258,7 +258,7 @@ static int nft_bitmap_init(const struct nft_set *set,
|
||||
{
|
||||
struct nft_bitmap *priv = nft_set_priv(set);
|
||||
|
||||
priv->bitmap_size = nft_bitmap_total_size(set->klen);
|
||||
priv->bitmap_size = nft_bitmap_size(set->klen);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user