Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-07-25 11:56:20 +0400
committerAdam Langley <agl@google.com>2014-07-30 04:44:03 +0400
commit7bbeead507ad0a6822fbf6f62486c001ed228b19 (patch)
tree2301c1fe9ea5d25427ad01cc9ac0f0ba57553aa9 /crypto/bn/exponentiation.c
parent072c953f40fde513b4e2b63a86e8cb8aed7aa2ae (diff)
A bunch of dead assignments.
Caught by clang scan-build. Change-Id: I4f10c879dc137d4a14a7a395764d28e5caa033ff Reviewed-on: https://boringssl-review.googlesource.com/1342 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bn/exponentiation.c')
-rw-r--r--crypto/bn/exponentiation.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/bn/exponentiation.c b/crypto/bn/exponentiation.c
index 0c9d7a78..69c2f903 100644
--- a/crypto/bn/exponentiation.c
+++ b/crypto/bn/exponentiation.c
@@ -509,7 +509,6 @@ static int mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
* how bit a window to do. To do this we need to scan
* forward until the last set bit before the end of the
* window */
- j = wstart;
wvalue = 1;
wend = 0;
for (i = 1; i < window; i++) {