Merge pull request #2 from Mitachi2611/fix-mutex-pointer-reset-in-Destroy-method

fix: mutex pointer reset in Destroy method
This commit is contained in:
d1str4ught
2025-08-30 21:29:59 +02:00
committed by GitHub

View File

@@ -68,7 +68,7 @@ void CAsyncSQL::Destroy()
::DeleteCriticalSection(m_mtxResult);
#endif
delete m_mtxResult;
m_mtxQuery = NULL;
m_mtxResult = NULL;
}
}