commit | 29059d12e0c7f349aca6993acac20c5efbe13b81 | [log] [tgz] |
---|---|---|
author | Herbert Xu <herbert@gondor.apana.org.au> | Fri May 18 16:25:19 2007 +1000 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Fri May 18 16:25:19 2007 +1000 |
tree | a147b947e8b484190ddc39bafefb421fea16e452 | |
parent | d158325e407864793c5b0fbc85c74702753333b9 [diff] [blame] |
[CRYPTO] tcrypt: Add missing error check The return value of crypto_hash_final isn't checked in test_hash_cycles. This patch corrects this. Thanks to Eric Sesterhenn for reporting this. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index f0aed01..11f9359 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c
@@ -691,7 +691,7 @@ if (ret) goto out; } - crypto_hash_final(desc, out); + ret = crypto_hash_final(desc, out); if (ret) goto out; }