diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-08 23:39:01 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-08 23:39:01 +0800 |
commit | deee2289b932d512035f579b8f8e178796564ba1 (patch) | |
tree | 6669d02405d8297df9f09f2ecb471c5f2562b023 | |
parent | f88ad8de282a9c4afd79fb0b4b536025f24a2005 (diff) | |
download | linux-deee2289b932d512035f579b8f8e178796564ba1.tar.gz linux-deee2289b932d512035f579b8f8e178796564ba1.tar.bz2 linux-deee2289b932d512035f579b8f8e178796564ba1.zip |
crypto: shash - Propagate reinit return value
This patch fixes crypto_shash_import to propagate the value returned
by reinit.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | crypto/shash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/shash.c b/crypto/shash.c index 783231090005..23e05a1e9038 100644 --- a/crypto/shash.c +++ b/crypto/shash.c @@ -180,7 +180,7 @@ int crypto_shash_import(struct shash_desc *desc, const u8 *in) memcpy(shash_desc_ctx(desc), in, crypto_shash_descsize(tfm)); if (alg->reinit) - alg->reinit(desc); + return alg->reinit(desc); return 0; } |