We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3857e10 commit 7cf26e5Copy full SHA for 7cf26e5
src/backtrace_posix.cc
@@ -25,9 +25,6 @@ void DumpBacktrace(FILE* fp) {
25
#if HAVE_EXECINFO_H
26
void* frames[256];
27
const int size = backtrace(frames, arraysize(frames));
28
- if (size <= 0) {
29
- return;
30
- }
31
for (int i = 1; i < size; i += 1) {
32
void* frame = frames[i];
33
fprintf(fp, "%2d: ", i);
0 commit comments