summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-07-16 03:25:44 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2010-07-16 03:25:44 (GMT)
commit042bd1ff6cf255e71689db913786dbb6bb79542d (patch)
treedbc4b4da7f34a4de52156d67588ad90fb9d447d7
parent2f7989efd4398d92b8adffce2e07dd043a0895fe (diff)
parent2716fbf63ee39eadc1aa9b3841b20f75b99a9bc3 (diff)
downloadlinux-fsl-qoriq-042bd1ff6cf255e71689db913786dbb6bb79542d.tar.xz
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: skcipher - avoid NULL dereference
-rw-r--r--crypto/ablkcipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ablkcipher.c b/crypto/ablkcipher.c
index 98a6610..a854df2 100644
--- a/crypto/ablkcipher.c
+++ b/crypto/ablkcipher.c
@@ -165,7 +165,7 @@ static inline int ablkcipher_next_slow(struct ablkcipher_request *req,
p = kmalloc(n, GFP_ATOMIC);
if (!p)
- ablkcipher_walk_done(req, walk, -ENOMEM);
+ return ablkcipher_walk_done(req, walk, -ENOMEM);
base = p + 1;