mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
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:
parent
d67dbd48dc
commit
e614556c54
@ -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 };
|
||||
|
Loading…
Reference in New Issue
Block a user