8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00

Avoid reporting an error if it happens due to process termination (provider shutdown). The logic generally follows the one inside fbsvcmgr.

This commit is contained in:
Dmitry Yemanov 2022-05-31 11:50:29 +03:00
parent e3eb2f363a
commit 3de23302c6

View File

@ -234,6 +234,9 @@ void TraceSvcUtil::runService(size_t spbSize, const UCHAR* spb)
sizeof(query), query,
sizeof(results) - 1, results))
{
if (ctrlCHandler.getTerminated())
break;
status_exception::raise(status);
}