Skip to content

Commit

Permalink
Fix: sigsegv backtrace log (#1048)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola committed Feb 28, 2022
1 parent 2872486 commit 72a1981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sighand.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ print_trace (void)
strings = backtrace_symbols (array, ret);
g_warning ("%s", message);

for (left = 0; left < 10; left++)
for (left = 0; left < ret; left++)
g_warning ("%s\n", strings[left]);

g_free (strings);
Expand Down

0 comments on commit 72a1981

Please sign in to comment.