On Sat, May 13, 2006 at 11:11:50PM +0100, Mike Hearn wrote:
if ((ent->HighWord.Bits.Granularity = (limit >= 0x100000)))
but unless I'm reading it wrong this is not testing ent before initialization at all, it's testing limit, assigning to ent, then testing the result of that assignment ... which seems to be valid.
Of course it is testing "ent" by accessing a member of it, thus dereferencing it.
Leslie