diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-06 18:25:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-06 18:25:06 -0700 |
commit | f27eb3afe87bd4b3fe919a6b7bf364f577ccee3b (patch) | |
tree | a8a49c07fd3aa992fbd508bc3fb9bf085ce56c01 /crypto/hash.c | |
parent | 6f605d83dd3906bcf69280f8754df85f80538471 (diff) | |
parent | 06817176784f620984200dc5d7cbe16984f7b262 (diff) |
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] api: fix writting into unallocated memory in setkey_aligned
Diffstat (limited to 'crypto/hash.c')
-rw-r--r-- | crypto/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hash.c b/crypto/hash.c index 4d75ca7b57b..4fd470bd729 100644 --- a/crypto/hash.c +++ b/crypto/hash.c @@ -40,7 +40,7 @@ static int hash_setkey_unaligned(struct crypto_hash *crt, const u8 *key, alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1); memcpy(alignbuffer, key, keylen); ret = alg->setkey(crt, alignbuffer, keylen); - memset(alignbuffer, 0, absize); + memset(alignbuffer, 0, keylen); kfree(buffer); return ret; } |