aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/xcbc.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2009-07-15 16:53:33 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2009-07-15 16:53:33 +0800
commitb5ebd44eb7559ea6135d536bafd02323d2ef0547 (patch)
tree519daaeb7d3b913ec6893ae91de3971ee5314651 /crypto/xcbc.c
parent3b3fc322d9c92e8bbfcecf739f1a3d10ded7f2cd (diff)
downloadkernel_samsung_smdk4412-b5ebd44eb7559ea6135d536bafd02323d2ef0547.zip
kernel_samsung_smdk4412-b5ebd44eb7559ea6135d536bafd02323d2ef0547.tar.gz
kernel_samsung_smdk4412-b5ebd44eb7559ea6135d536bafd02323d2ef0547.tar.bz2
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>
Diffstat (limited to 'crypto/xcbc.c')
-rw-r--r--crypto/xcbc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/xcbc.c b/crypto/xcbc.c
index b2cc855..3b991bf 100644
--- a/crypto/xcbc.c
+++ b/crypto/xcbc.c
@@ -252,6 +252,7 @@ static int xcbc_create(struct crypto_template *tmpl, struct rtattr **tb)
}
inst = shash_alloc_instance("xcbc", alg);
+ err = PTR_ERR(inst);
if (IS_ERR(inst))
goto out_put_alg;