http://bugs.winehq.org/show_bug.cgi?id=8744
------- Additional Comments From mikolaj.zalewski@gmail.com 2007-27-06 17:24 ------- Created an attachment (id=6899) --> (http://bugs.winehq.org/attachment.cgi?id=6899&action=view) disable noexec protection
Maybe you have noexec protection on one computer but not on the other? Wine allocate 16-bit code segments with GlobalAlloc which calls HeapAlloc thus this genereates exceptions when noexec is enabled. You could check this by trying this patch that disables the NX protection in a brutal way (a cleaner workaround would be to remove the NX Compatible bit from winevdm.exe. However the proper solution is to alloc blocks in GlobalAlloc with VirtualAlloc - some time ago I've been working on such a patch but it's not finished yet)