Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bfef5e3e authored by Chen Wandun's avatar Chen Wandun Committed by Greg Kroah-Hartman
Browse files

crypto: essiv - remove redundant null pointer check before kfree



[ Upstream commit e18036da5c23530994faf7243b592e581f1efed2 ]

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

Signed-off-by: default avatarChen Wandun <chenwandun@huawei.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Stable-dep-of: b5a772adf45a ("crypto: essiv - Handle EBUSY correctly")
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 2d1ac2f2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -188,7 +188,6 @@ 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);
	aead_request_complete(req, err);
}