[Mono-devel-list] Re: Alpha corlib mismatched sizes.

Laramie Leavitt lar at leavitt.us
Wed Jul 2 01:50:05 EDT 2003


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.





More information about the Mono-devel-list mailing list