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:
Родитель
34bb975126
Коммит
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))
|
||||
|
|
Загрузка…
Ссылка в новой задаче