Bug 209622 nsTHashtable cause bustage on Solaris with F6U2

r/sr=bsmedberg
The missed part in nsBaseHashtable.h, patch by harinath@cs.umn.edu
This commit is contained in:
kyle.yuan%sun.com 2005-08-11 19:43:17 +00:00
parent d67dbd48dc
commit e614556c54

View File

@ -182,7 +182,7 @@ public:
*/
PRUint32 EnumerateRead(EnumReadFunction enumFunc, void* userArg) const
{
NS_ASSERTION(mTable.entrySize,
NS_ASSERTION(this->mTable.entrySize,
"nsBaseHashtable was not initialized properly.");
s_EnumReadArgs enumData = { enumFunc, userArg };
@ -215,7 +215,7 @@ public:
*/
PRUint32 Enumerate(EnumFunction enumFunc, void* userArg)
{
NS_ASSERTION(mTable.entrySize,
NS_ASSERTION(this->mTable.entrySize,
"nsBaseHashtable was not initialized properly.");
s_EnumArgs enumData = { enumFunc, userArg };