projects
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
crypto: shash - Propagate reinit return value
[linux-2.6.git]
/
crypto
/
shash.c
diff --git
a/crypto/shash.c
b/crypto/shash.c
index
7832310
..
23e05a1
100644
(file)
--- 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;
}