Fix compile error

This commit is contained in:
Couriersud 2008-11-14 19:54:03 +00:00
parent 537c9becf6
commit 7749448b1f

View File

@ -797,8 +797,8 @@ static void drcbex64_reset(drcbe_state *drcbe)
/* fetch the accessors now that things are ready to go */
for (spacenum = 0; spacenum < ADDRESS_SPACES; spacenum++)
if (active_address_space[spacenum].accessors != NULL)
drcbe->accessors[spacenum] = *active_address_space[spacenum].accessors;
if (active_address_space[spacenum]->accessors != NULL)
drcbe->accessors[spacenum] = *active_address_space[spacenum]->accessors;
/* generate a little bit of glue code to set up the environment */
dst = (x86code **)drccache_begin_codegen(drcbe->cache, 500);