http://bugs.winehq.org/show_bug.cgi?id=35596
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download Status|UNCONFIRMED |NEW URL| |http://sourceforge.net/proj | |ects/apexdc/files/ApexDC%2B | |%2B/1.5.10/ApexDC%2B%2B_1.5 | |.10_Slim.7z/download CC| |focht@gmx.net Component|-unknown |kernel32 Summary|ApexDC++ : crash on startup |64-bit ApexDC++ crashes on |(fixme: FindFirstFileExW) |startup | |(GetNumaHighestNodeNumber | |not implemented) Ever confirmed|0 |1
--- Comment #3 from Anastasius Focht focht@gmx.net --- Hello folks,
the crash has nothing to do with FindFirstFileExW() FIXME message. In fact 'FIXME' doesn't automatically mean 'bug' (most users get it wrong).
Relevant part of trace log:
--- snip --- ... 0026:Call KERNEL32.GetNumaHighestNodeNumber(0023f520) ret=1403024cf 0026:fixme:process:GetNumaHighestNodeNumber (0x23f520): stub 0026:Ret KERNEL32.GetNumaHighestNodeNumber() retval=00000000 ret=1403024cf 0026:Call KERNEL32.GetLastError() ret=1403024e2 0026:Ret KERNEL32.GetLastError() retval=00000078 ret=1403024e2 0026:Call ntdll.RtlPcToFileHeader(140476fd8,0023f4d0) ret=1403099bc 0026:Ret ntdll.RtlPcToFileHeader() retval=140000000 ret=1403099bc 0026:Call KERNEL32.RaiseException(e06d7363,00000001,00000004,0023f4a0) ret=1403099fb 0026:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b84a147 ip=7b84a147 tid=0026 0026:trace:seh:raise_exception info[0]=0000000019930520 0026:trace:seh:raise_exception info[1]=000000000023f4f0 0026:trace:seh:raise_exception info[2]=0000000140476fd8 0026:trace:seh:raise_exception info[3]=0000000140000000 0026:trace:seh:raise_exception rax=000000000023f280 rbx=0000000140476fd8 rcx=000000000023f280 rdx=0000003157349c5c 0026:trace:seh:raise_exception rsi=000000000023f4a0 rdi=000000000023f2a0 rbp=000000000023f3d0 rsp=000000000023f260 0026:trace:seh:raise_exception r8=0000000000000004 r9=000000000023f4a0 r10=0000000000000000 r11=00000031573807e0 0026:trace:seh:raise_exception r12=0000000000000000 r13=0000000000000001 r14=0000000000000000 r15=0000000000000002 ... --- snip ---
Source: http://source.winehq.org/git/wine.git/blob/7066ce0b1e22bc490bd791fd948bbbb3a...
--- snip --- 3912 BOOL WINAPI GetNumaHighestNodeNumber(PULONG highestnode) 3913 { 3914 FIXME("(%p): stub\n", highestnode); 3915 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 3916 return FALSE; 3917 } --- snip ---
$ sha1sum ApexDC++_1.5.10_Slim.7z 368d85d9db466c36f43fb4e53d36c341a08cfbee ApexDC++_1.5.10_Slim.7z
$ du -sh ApexDC++_1.5.10_Slim.7z 17M ApexDC++_1.5.10_Slim.7z
$ wine --version wine-1.7.12-146-gc4415b2
Regards