http://bugs.winehq.org/show_bug.cgi?id=7524
Summary: inet_addr need exception handler Product: Wine Version: 0.9.30. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-net AssignedTo: wine-bugs@winehq.org ReportedBy: leukhe@gmail.com
Emule morph fails to start up. I traced this back to this simple program:
#include "stdafx.h" #include <Winsock2.h.>
int _tmain(int argc, _TCHAR* argv[]) { int var = inet_addr(NULL); fprintf(stdout,"THis program is ok\n");
return 0; }
This program returns output on windows xp console but fails on 0.9.30 wine.
on wine (on ubuntu, on vmware) the debugger starts.
On xp when running in a debugger it reports a first time exception, but does not break on it.