mirror of https://gitee.com/openkylin/linux.git
netfilter: nftables: fix incorrect increment of loop counter
The intention of the err_expr cleanup path is to iterate over the
allocated expr_array objects and free them, starting from i - 1 and
working down to the start of the array. Currently the loop counter
is being incremented instead of decremented and also the index i is
being used instead of k, repeatedly destroying the same expr_array
element. Fix this by decrementing k and using k as the index into
expr_array.
Addresses-Coverity: ("Infinite loop")
Fixes: 8cfd9b0f85
("netfilter: nftables: generalize set expressions support")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
3db1a3fa98
commit
161b838e25
|
@ -5254,8 +5254,8 @@ static int nft_set_elem_expr_clone(const struct nft_ctx *ctx,
|
|||
return 0;
|
||||
|
||||
err_expr:
|
||||
for (k = i - 1; k >= 0; k++)
|
||||
nft_expr_destroy(ctx, expr_array[i]);
|
||||
for (k = i - 1; k >= 0; k--)
|
||||
nft_expr_destroy(ctx, expr_array[k]);
|
||||
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue