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

Do not hold mutex more then needed

This commit is contained in:
alexpeshkoff 2008-02-02 17:42:32 +00:00
parent e75ce2e528
commit 8bdc06af57

View File

@ -865,16 +865,17 @@ ISC_STATUS callback_execute_immediate( ISC_STATUS* status,
try try
{ {
Firebird::MutexLockGuard guard(databases_mutex);
dsql_dbb* database = NULL; dsql_dbb* database = NULL;
// 1. Locate why_db_handle, corresponding to jrd_database_handle // 1. Locate why_db_handle, corresponding to jrd_database_handle
for (database = databases; database; database = database->dbb_next) { // guard scope
{ Firebird::MutexLockGuard guard(databases_mutex);
if (YValve::translate<YValve::Attachment>(&database->dbb_database_handle)->handle == jrd_attachment_handle) for (database = databases; database; database = database->dbb_next)
{ {
break; if (YValve::translate<YValve::Attachment>(&database->dbb_database_handle)->handle == jrd_attachment_handle)
{
break;
}
} }
} }
if (!database) if (!database)