diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-09-20 18:22:46 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-09-23 09:30:48 +0200 |
commit | 4004d5c374dabcbce201e16442e4596b764cc60b (patch) | |
tree | 20ef28156804c3c83ccc56e215b268d12e995e45 /net | |
parent | b9d80f83bf8c3485ae53a4f3a715363d764bb0e4 (diff) | |
download | linux-4004d5c374dabcbce201e16442e4596b764cc60b.tar.bz2 |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nft_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nft_lookup.c b/net/netfilter/nft_lookup.c index e164325d1bc0..8166b6994cc7 100644 --- a/net/netfilter/nft_lookup.c +++ b/net/netfilter/nft_lookup.c @@ -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); |