When reporting a bug(), call abort() instead of exit(), so that we
can analyse the core.
This commit is contained in:
parent
c304392e65
commit
818ff1e2b7
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ bug(char *msg, ...)
|
|||
|
||||
va_start(args, msg);
|
||||
vlog(L_BUG[0], msg, args);
|
||||
exit(1);
|
||||
abort();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue