netfilter: nft_lookup: remove superfluous element found check
We already checked for !found just a bit before: if (!found) { regs->verdict.code = NFT_BREAK; return; } if (found && set->flags & NFT_SET_MAP) ^^^^^ So this redundant check can just go away. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
b9d80f83bf
commit
4004d5c374
|
@ -43,7 +43,7 @@ static void nft_lookup_eval(const struct nft_expr *expr,
|
|||
return;
|
||||
}
|
||||
|
||||
if (found && set->flags & NFT_SET_MAP)
|
||||
if (set->flags & NFT_SET_MAP)
|
||||
nft_data_copy(®s->data[priv->dreg],
|
||||
nft_set_ext_data(ext), set->dlen);
|
||||
|
||||
|
|
Loading…
Reference in New Issue