general: prevent die() from getting recursed into
When something that is called from die() calls die() again, there is nothing we can do any more but give up. This would have prevented the spiralling as seen in https://savannah.gnu.org/bugs/?60853.master
parent
8d1a666dcf
commit
177e4e5805
|
@ -351,6 +351,11 @@ void die(const char *msg, ...)
|
|||
{
|
||||
va_list ap;
|
||||
openfilestruct *firstone = openfile;
|
||||
static int stabs = 0;
|
||||
|
||||
/* When dying for a second time, just give up. */
|
||||
if (++stabs > 1)
|
||||
exit(11);
|
||||
|
||||
restore_terminal();
|
||||
|
||||
|
|
Loading…
Reference in New Issue