Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR: SymGetLineFromAddr64, GetLastError: 487 (Address: )

I am trying to use the StackWalker which is used to get the call stacks. While when running, the 487 error shows. Does anybody have some idea?

like image 720
xiao Avatar asked Aug 21 '14 13:08

xiao


1 Answers

It just means that StackWalker couldn't find debugging information for the function at that point in the backtrace. You can just ignore it if you don't need know the source file and line number for that function. You can make it go way for functions in Windows components by using the Microsoft symbol server: http://support.microsoft.com/?kbid=311503

like image 118
Ross Ridge Avatar answered Sep 23 '22 00:09

Ross Ridge