corrected code to really skip stack frames in the beginning and to number the remaining frames correctly

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35878 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-10-10 20:11:29 +00:00
parent 345bdf13c0
commit d2dfef5f3f

View File

@ -225,12 +225,13 @@ void wxStackWalker::Walk(size_t skip)
char **symbols = backtrace_symbols(addresses, depth);
if (skip > (size_t) depth)
skip = (size_t) depth;
// we have 3 more "intermediate" frames which the calling code doesn't know
// about., account for them
skip += 3;
for ( int n = skip; n < depth; n++ )
{
wxStackFrame frame(n, addresses[n-skip], symbols[n-skip]);
wxStackFrame frame(n - skip, addresses[n], symbols[n]);
OnStackFrame(frame);
}
}