fix math bug in parseFieldTable which lead to incorrect objectMasks

This commit is contained in:
Joel Dice 2007-09-15 11:22:22 -06:00
parent 912617c4ff
commit aec0c29084

View File

@ -804,7 +804,7 @@ parseFieldTable(Thread* t, Stream& s, object class_, object pool)
memcpy(&intArrayBody(t, mask, 0),
&intArrayBody(t, superMask, 0),
ceiling(classFixedSize(t, classSuper(t, class_)),
BitsPerWord * BytesPerWord)
32 * BytesPerWord)
* 4);
}
}