One of the problems is verify.c, around line 2560 if (klass->valuetype) struct_offset = 8 else struct_offset = 0; change to: if( klass->valuetype ) struct_offset = 2 * sizeof( void * ); else struct_offset = 0; Laramie.