зеркало из https://github.com/mozilla/pjs.git
Bug 653564: Use signed int for iterating through nsCOMArray in ContentParent::SetChildMemoryReporters, to fix compile warning. r=dougt
This commit is contained in:
Родитель
64981b9664
Коммит
c45c63944a
|
@ -668,7 +668,7 @@ void
|
|||
ContentParent::SetChildMemoryReporters(const InfallibleTArray<MemoryReport>& report)
|
||||
{
|
||||
nsCOMPtr<nsIMemoryReporterManager> mgr = do_GetService("@mozilla.org/memory-reporter-manager;1");
|
||||
for (PRUint32 i = 0; i < mMemoryReporters.Count(); i++)
|
||||
for (PRInt32 i = 0; i < mMemoryReporters.Count(); i++)
|
||||
mgr->UnregisterReporter(mMemoryReporters[i]);
|
||||
|
||||
for (PRUint32 i = 0; i < report.Length(); i++) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче