http://bugs.winehq.org/show_bug.cgi?id=6246
Summary: dbghelp:First class client just hangs. Product: Wine Version: CVS Platform: Other URL: http://www3.firstclass.com/ClientDownloads/FC82ClientDow nloadFiles/FC8200US.exe OS/Version: Linux Status: NEW Keywords: download Severity: normal Priority: P2 Component: wine-binary AssignedTo: wine-bugs@winehq.org ReportedBy: xerox_xerox2000@yahoo.co.uk
Hi, after installation, trying to run the progra just hangs. No console output at all. Relevant part of the trace (i guess):
0009:Call dbghelp.SymSetOptions(00000202) ret=0073e7d5 0009:Ret dbghelp.SymSetOptions() retval=00000202 ret=0073e7d5 0009:Call dbghelp.SymInitialize(ffffffff,00000000,00000000) ret=0073e780
The dumb hack below makes the application start fine. Maybe someone who knows dbghelp could fix this.
diff --git a/dlls/dbghelp/dbghelp.c b/dlls/dbghelp/dbghelp.c index 6c5cd60..8ef6ed0 100644 --- a/dlls/dbghelp/dbghelp.c +++ b/dlls/dbghelp/dbghelp.c @@ -264,14 +264,14 @@ static BOOL check_live_target(struct pro * mechanism (ie only load the debug information when we actually need it). */ BOOL WINAPI SymInitializeW(HANDLE hProcess, PCWSTR UserSearchPath, BOOL fInvadeProcess) -{ +{return FALSE; struct process* pcs;
TRACE("(%p %s %u)\n", hProcess, debugstr_w(UserSearchPath), fInvadeProcess);