The XPCOM glue cannot use NSPR, provisional r=bz to fix btek bustage until I can find an XPCOM peer.

This commit is contained in:
bsmedberg@covad.net
2005-11-14 16:36:39 +00:00
parent 42b7b9c9e9
commit bad3f393f0

View File

@@ -287,8 +287,8 @@ PRBool nsVoidArray::GrowArrayBy(PRInt32 aGrowBy)
}
else
{
newSize = PR_BIT(PR_CeilingLog2(newSize));
newCapacity = CAPACITYOF_IMPL(newSize);
PR_CEILING_LOG2(newSize, newSize);
newCapacity = CAPACITYOF_IMPL(PR_BIT(newSize));
}
}
// frees old mImpl IF this succeeds