diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-02-13 17:58:32 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-02-27 05:56:54 +0800 |
commit | b3bd5869fd65f509d96a9fcb47cdea81163a811d (patch) | |
tree | b17732975cbf77d72a3a4183cd048a353559a4bd /arch/x86/crypto/cast5_avx_glue.c | |
parent | fb5d23e3e09d6c9719b783ac1955c085aca3d4ae (diff) | |
download | linux-b3bd5869fd65f509d96a9fcb47cdea81163a811d.tar.bz2 |
crypto: remove a duplicate checks in __cbc_decrypt()
We checked "nbytes < bsize" before so it can't happen here.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Acked-by: Johannes Götzfried <johannes.goetzfried@cs.fau.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/cast5_avx_glue.c')
-rw-r--r-- | arch/x86/crypto/cast5_avx_glue.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/crypto/cast5_avx_glue.c b/arch/x86/crypto/cast5_avx_glue.c index e6a3700489b9..e57e20ab5e0b 100644 --- a/arch/x86/crypto/cast5_avx_glue.c +++ b/arch/x86/crypto/cast5_avx_glue.c @@ -203,9 +203,6 @@ static unsigned int __cbc_decrypt(struct blkcipher_desc *desc, src -= 1; dst -= 1; } while (nbytes >= bsize * CAST5_PARALLEL_BLOCKS); - - if (nbytes < bsize) - goto done; } /* Handle leftovers */ |