Is there a way to trace back where a memory crash address refers to in the original source code?

0

I am working with a program that crashes, but only with the release build.

If I use the Local Windows Debugger with the release build, I manage to get a message like this one :

Unhandled exception at 0x0001305FA3B0 in program.exe: 0xC0000094: Integer division by zero.

Is there a way to find what is the instruction at the memory location 0x0001305FA3B0 and more importantly what source file is it located in ?

I also wonder why an integer division by zero would not crash in debug build (if you have an explaination for this one).

c++
debugging
exception
visual-c++
divide-by-zero
asked on Stack Overflow Nov 5, 2018 by Norgannon

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0