[Vm-dev] suspect test in dabusiness.h

Nicolas Cellier nicolas.cellier.aka.nice at gmail.com
Thu Aug 30 22:10:43 UTC 2012


strange test in line 73:
			if (!(size = sizeField(arg)))
				size = argByteSize = sizeof(void *);
			else
				argByteSize = abs(size);

for me, it means

			if (sizeField(arg) != 0)
				size = argByteSize = sizeof(void *);
			else
				size = argByteSize = 0;

is it intentional ?

Nicolas


More information about the Vm-dev mailing list