[Bug 1042012] Latest gcc 7-1.2 cause crash
http://bugzilla.suse.com/show_bug.cgi?id=1042012 http://bugzilla.suse.com/show_bug.cgi?id=1042012#c7 --- Comment #7 from Dr. Werner Fink <werner@suse.com> --- Created attachment 727291 --> http://bugzilla.suse.com/attachment.cgi?id=727291&action=edit source-luatex.dif (In reply to Richard Biener from comment #6)
So as I thought GCC is taking advantage of
#ifdef _MSC_VER __declspec(align(16)) #endif struct cdata { const struct ctype type #ifdef __GNUC__ __attribute__ ((aligned(16))) #endif ; };
when loading from cd->type but
cd = (struct cdata*) lua_touserdata(L, idx);
lua_touserdata doesn't honor that alignment. You can probably see that at the point of the crash %eax is not aligned to 16 bytes.
Aha ... thanks, with the attached patch the problem is gone. Maybe gcc7 should throw an error at compile time if the aligment does not fit. The function lua_touserdata() is from lua52 library -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com