8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:40:38 +01:00

Avoid multiple attempts to shutdown (frontported)

This commit is contained in:
Dmitry Yemanov 2021-09-07 07:23:47 +03:00
parent 4c998304ce
commit 1744bc6827

View File

@ -192,6 +192,9 @@ Manager::~Manager()
void Manager::shutdown()
{
if (m_shutdown)
return;
m_shutdown = true;
m_workingSemaphore.release();