Bug 810215 - Fix stupid defect causing the "explicit/atoms-table" reporter to always return 0. r=khuey.

This commit is contained in:
Nicholas Nethercote 2012-11-09 00:46:34 -08:00
parent a677b659cc
commit 5a8d47206c

View File

@ -473,7 +473,7 @@ NS_SizeOfAtomTablesIncludingThis(nsMallocSizeOfFun aMallocSizeOf) {
n += gStaticAtomTable->SizeOfIncludingThis(SizeOfStaticAtomTableEntryExcludingThis,
aMallocSizeOf);
}
return 0;
return n;
}
#define ATOM_HASHTABLE_INITIAL_SIZE 4096