I have a Windows Event Log entry giving the offset of the failed call triggering an application crash. I have a release build, the corresponding .PDB file, and the source.
I do not have a .MAP or .COD file.
How can I find the failing source line?
WinDbg has an ln
command that will give you the nearest symbol of an address.
Open your binary using:
WinDbg -z somebin.dll
And in the command window, type:
ln <address>
Once you find the function it's in, run
uf somebin!SomeFunc
to find the closest line to the address.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With