Commit 015e42c8 authored by Colin Ian King's avatar Colin Ian King Committed by Herbert Xu

crypto: x86/des3 - remove redundant assignment of variable nbytes

The variable nbytes is being assigned a value that is never read, it is
being re-assigned in the following statement. The assignment is redundant
and can be removed.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 3f9dd4c8
...@@ -164,7 +164,7 @@ static int cbc_encrypt(struct skcipher_request *req) ...@@ -164,7 +164,7 @@ static int cbc_encrypt(struct skcipher_request *req)
err = skcipher_walk_virt(&walk, req, false); err = skcipher_walk_virt(&walk, req, false);
while ((nbytes = walk.nbytes)) { while (walk.nbytes) {
nbytes = __cbc_encrypt(ctx, &walk); nbytes = __cbc_encrypt(ctx, &walk);
err = skcipher_walk_done(&walk, nbytes); err = skcipher_walk_done(&walk, nbytes);
} }
...@@ -243,7 +243,7 @@ static int cbc_decrypt(struct skcipher_request *req) ...@@ -243,7 +243,7 @@ static int cbc_decrypt(struct skcipher_request *req)
err = skcipher_walk_virt(&walk, req, false); err = skcipher_walk_virt(&walk, req, false);
while ((nbytes = walk.nbytes)) { while (walk.nbytes) {
nbytes = __cbc_decrypt(ctx, &walk); nbytes = __cbc_decrypt(ctx, &walk);
err = skcipher_walk_done(&walk, nbytes); err = skcipher_walk_done(&walk, nbytes);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment