Bug 1629342 - Print string stats on process exit only if there is a leak. r=erahm,mccr8

I don't think anyone particularly cares about these stats.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Cameron McCormack 2020-04-12 17:23:12 +00:00
Родитель 29c6b3234c
Коммит 396dcd374d
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -62,6 +62,11 @@ class nsStringStats {
return;
}
// Only print the stats if we detect a leak.
if (mAllocCount <= mFreeCount && mAdoptCount <= mAdoptFreeCount) {
return;
}
printf("nsStringStats\n");
printf(" => mAllocCount: % 10d\n", int(mAllocCount));
printf(" => mReallocCount: % 10d\n", int(mReallocCount));