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

Commit 5a1436be authored by Steffen Klassert's avatar Steffen Klassert Committed by Herbert Xu
Browse files

crypto: pcrypt - call the complete function on error



This fixes three forgotten calls to the complete function
in the error case.

Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e054f164
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ static void pcrypt_aead_enc(struct padata_priv *padata)

	padata->info = crypto_aead_encrypt(req);

	if (padata->info)
	if (padata->info == -EINPROGRESS)
		return;

	padata_do_serial(padata);
@@ -158,7 +158,7 @@ static void pcrypt_aead_dec(struct padata_priv *padata)

	padata->info = crypto_aead_decrypt(req);

	if (padata->info)
	if (padata->info == -EINPROGRESS)
		return;

	padata_do_serial(padata);
@@ -202,7 +202,7 @@ static void pcrypt_aead_givenc(struct padata_priv *padata)

	padata->info = crypto_aead_givencrypt(req);

	if (padata->info)
	if (padata->info == -EINPROGRESS)
		return;

	padata_do_serial(padata);