From b25a0d63e6ffdb29e0cff04c2e3b6da05f180381 Mon Sep 17 00:00:00 2001 From: Mike Hamburg Date: Sun, 10 Jul 2011 16:22:16 -0700 Subject: [PATCH] remove extra variable i --- core/random.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/random.js b/core/random.js index 6ae049f..09ae7f2 100644 --- a/core/random.js +++ b/core/random.js @@ -369,7 +369,7 @@ sjcl.random = { (function(){ try { // get cryptographically strong entropy in Webkit - var ab = new Uint32Array(32), i; + var ab = new Uint32Array(32); crypto.getRandomValues(ab); sjcl.random.addEntropy(ab, 1024, "crypto.getRandomValues"); } catch (e) {