> I happened upon a baffling bug today. > > https://savannah.gnu.org/bugs/?68552
exit() runs the destructors of global C++ objects [1], while quick_exit() doesn't [2]. Does the crash persist of you call quick_exit() instead of exit()? Bruno [1] https://en.cppreference.com/cpp/utility/program/exit [2] https://en.cppreference.com/cpp/utility/program/quick_exit
