]> git.baikalelectronics.ru Git - kernel.git/commitdiff
crypto: essiv - remove redundant null pointer check before kfree
authorChen Wandun <chenwandun@huawei.com>
Sat, 16 Nov 2019 06:51:00 +0000 (14:51 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 15:43:39 +0000 (16:43 +0100)
[ Upstream commit dcb0bc4ed34f27038339f269f2e557f3eb3bc04c ]

kfree has taken null pointer check into account. so it is safe to
remove the unnecessary check.

Signed-off-by: Chen Wandun <chenwandun@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Stable-dep-of: b5a772adf45a ("crypto: essiv - Handle EBUSY correctly")
Signed-off-by: Sasha Levin <sashal@kernel.org>
crypto/essiv.c

index a8befc8fb06eddcce1921f28d2422efd3293620c..3d3f9d7f607ca47b32ae48470fff8a53eccafe66 100644 (file)
@@ -188,8 +188,7 @@ static void essiv_aead_done(struct crypto_async_request *areq, int err)
        struct aead_request *req = areq->data;
        struct essiv_aead_request_ctx *rctx = aead_request_ctx(req);
 
-       if (rctx->assoc)
-               kfree(rctx->assoc);
+       kfree(rctx->assoc);
        aead_request_complete(req, err);
 }