mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
crypto: xcbc - Fix incorrect error value when creating instance
If shash_alloc_instance() fails, we return the wrong error value. This patch fixes it. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
3b3fc322d9
commit
b5ebd44eb7
1 changed files with 1 additions and 0 deletions
|
@ -252,6 +252,7 @@ static int xcbc_create(struct crypto_template *tmpl, struct rtattr **tb)
|
||||||
}
|
}
|
||||||
|
|
||||||
inst = shash_alloc_instance("xcbc", alg);
|
inst = shash_alloc_instance("xcbc", alg);
|
||||||
|
err = PTR_ERR(inst);
|
||||||
if (IS_ERR(inst))
|
if (IS_ERR(inst))
|
||||||
goto out_put_alg;
|
goto out_put_alg;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue