Bug 209622 nsTHashtable cause bustage on Solaris with F6U2

r/sr=bsmedberg
The missed part in nsBaseHashtable.h, patch by harinath@cs.umn.edu


git-svn-id: svn://10.0.0.236/trunk@143969 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kyle.yuan%sun.com 2003-06-20 01:26:00 +00:00
parent 4f6b46a91e
commit 5662499915

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 };