8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 05:23:03 +01:00
This commit is contained in:
robocop 2015-04-15 17:38:33 +00:00
parent 8edeb97d5f
commit addd67c018

View File

@ -312,7 +312,7 @@ void InternalTransaction::doCommit(FbStatusVector* status, thread_db* tdbb, bool
{
m_transaction->commit(&s);
m_transaction = NULL;
}
}
}
}
@ -337,7 +337,7 @@ void InternalTransaction::doRollback(FbStatusVector* status, thread_db* tdbb, bo
{
m_transaction->rollback(&s);
m_transaction = NULL;
}
}
}
if (status->getErrors()[1] == isc_att_shutdown && !retain)
@ -606,7 +606,7 @@ static bool isPermanentBlob(const dsc& src)
{
if (src.isBlob())
{
const bid* srcBlobID = reinterpret_cast<bid*> (src.dsc_address);
const bid* srcBlobID = reinterpret_cast<bid*>(src.dsc_address);
return (srcBlobID->bid_internal.bid_relation_id != 0);
}
return false;