зеркало из https://github.com/mozilla/gecko-dev.git
Bug 553305 - Properly declare 'i'. r=dietrich
--HG-- extra : rebase_source : f74932397a6aa10672d498cad73322d8516fb406
This commit is contained in:
Родитель
6f57d094ce
Коммит
54b1618982
|
@ -2491,7 +2491,7 @@ SessionStoreService.prototype = {
|
|||
restoreCookies: function sss_restoreCookies(aCookies) {
|
||||
// MAX_EXPIRY should be 2^63-1, but JavaScript can't handle that precision
|
||||
var MAX_EXPIRY = Math.pow(2, 62);
|
||||
for (i = 0; i < aCookies.length; i++) {
|
||||
for (let i = 0; i < aCookies.length; i++) {
|
||||
var cookie = aCookies[i];
|
||||
try {
|
||||
CookieSvc.add(cookie.host, cookie.path || "", cookie.name || "",
|
||||
|
|
Загрузка…
Ссылка в новой задаче