Commit 0afccbf7 authored by Sergei Golubchik's avatar Sergei Golubchik

restore stack traces that were broken by ebfe8c4e

parent 2fde9711
...@@ -310,12 +310,8 @@ int my_addr_resolve(void *ptr, my_addr_loc *loc) ...@@ -310,12 +310,8 @@ int my_addr_resolve(void *ptr, my_addr_loc *loc)
/* Save result for future comparisons. */ /* Save result for future comparisons. */
strnmov(addr2line_binary, info.dli_fname, sizeof(addr2line_binary)); strnmov(addr2line_binary, info.dli_fname, sizeof(addr2line_binary));
} }
if (!(error= addr_resolve(ptr, loc)))
return 0;
#ifdef EXTRA_RESOLVE
if (!(error= addr_resolve((void*) (ptr - info.dli_fbase), loc))) if (!(error= addr_resolve((void*) (ptr - info.dli_fbase), loc)))
return 0; return 0;
#endif
return error; return error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment