Bug 1551410 - Part 1: increment loop index; r=chutten

Differential Revision: https://phabricator.services.mozilla.com/D31045

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Liang-Heng Chen 2019-05-14 15:36:55 +00:00
Родитель 1e92dbe339
Коммит 5b2c95ad56
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -234,7 +234,7 @@ nsresult AppEncodeTo(const StaticMutexAutoLock& lock,
}
}
aResult.AppendElement(MakePair(id, metricData));
} while (generation < maxGeneration);
} while (generation++ < maxGeneration);
}
return NS_OK;
}