remove extra variable i

This commit is contained in:
Mike Hamburg 2011-07-10 16:22:16 -07:00
parent c1fcb9a560
commit b25a0d63e6

View File

@ -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) {