From 17f5ac91494ce873f08fb7653d767bb2c5846fff Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Fri, 14 Apr 2017 18:29:29 -0400 Subject: [PATCH] libroot: Restore exit() call after debugger(). Thanks PulkoMandy for the review. --- src/system/libroot/posix/stdlib/exit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/libroot/posix/stdlib/exit.cpp b/src/system/libroot/posix/stdlib/exit.cpp index 9fba1eb25a..0e103099a8 100644 --- a/src/system/libroot/posix/stdlib/exit.cpp +++ b/src/system/libroot/posix/stdlib/exit.cpp @@ -290,6 +290,7 @@ abort() raise(SIGABRT); debugger("abort() called"); + exit(EXIT_FAILURE); }