SymGetLineFromAddr64
fails at runtime when compiling for 32bit
#170
Labels
SymGetLineFromAddr64
fails at runtime when compiling for 32bit
#170
When compiling for 32bit these two lines will fail at runtime:
cpptrace/src/symbols/symbols_with_dbghelp.cpp
Lines 340 to 341 in c7ff8cb
There is a macro in
DbgHelp.h
(already included), which automaticity choses the right type.So they just need to be replace with:
IMAGEHLP_LINE line; bool got_line = SymGetLineFromAddr(proc, addr, &displacement.b, &line);
The text was updated successfully, but these errors were encountered: