mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
esp4: Simplify the calculation of variables
Fix the following coccicheck warnings: ./net/ipv4/esp4.c:757:16-18: WARNING !A || A && B is equivalent to !A || B. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
34bb975126
commit
1d9bfacd52
@ -754,7 +754,7 @@ int esp_input_done2(struct sk_buff *skb, int err)
|
||||
int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
|
||||
int ihl;
|
||||
|
||||
if (!xo || (xo && !(xo->flags & CRYPTO_DONE)))
|
||||
if (!xo || !(xo->flags & CRYPTO_DONE))
|
||||
kfree(ESP_SKB_CB(skb)->tmp);
|
||||
|
||||
if (unlikely(err))
|
||||
|
Loading…
Reference in New Issue
Block a user