Hi!
I'm trying to debug a crash in wxmsw26h_vc.dll, where I only have an address to where the crash occurs. I suspect that our Python code does something strange, but I cannot reproduce the crash myself, and the only clue I have is the info from the Windows crash dialog saying:
"AppName: foo.exe AppVer: 3.0.0.0 ModName: wxmsw26h_vc.dll
ModVer: 2.6.1.0 Offset: 000c0694"
The DLL included in the distribution does not have any symbols in it, so the only thing I could figure out was that the crash appears to occur in wxWindow::MSWWindowProc, which is on the address:
000C04E0 ?MSWWindowProc@wxWindow@@UAEJIIJ@Z
Is there any way to get hold of a DLL with debug-symbols so I at least can see where in the code the crash appears? I thought of actually building wxPython myself, but when I read the build instructions I realized that the possibility of me managing to build a DLL sufficiently similar to the original DLL in order for the offset above to make sense
was very close to zero.
Any help is appreciated.
···
--
/Jesper