diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index 460ebf3a52..fe566a0108 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -127,6 +127,8 @@ ExportHandler::ExportHandler (Session & session) _timespan_thread_active.store (1); if (pthread_create (&_timespan_thread, NULL, _timespan_thread_run, this)) { _timespan_thread_active.store (0); + fatal << "Cannot create export handler helper thread" << endmsg; + abort(); /* NOTREACHED*/ } }