This commit is contained in:
Carsten "Tomcat" Book 2015-10-14 14:52:14 +02:00
Родитель 224fd0ff0d 15df2c2f4b
Коммит 57e8826009
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -20130,9 +20130,13 @@ FactoryOp::ActorDestroy(ActorDestroyReason aWhy)
NoteActorDestroyed();
if (mState == State::WaitingForTransactionsToComplete ||
(mState == State::SendingResults && aWhy != Deletion)) {
// We didn't get an opportunity to clean up. Do that now.
// There may be an event in the event queue that would do the cleanup later,
// but if we are being destroyed abnormally (not by calling
// PBackgroundIDBFactoryRequestParent::Send__delete__) we need to do the
// cleanup here and just ignore the cleanup event in FactoryOp::Run.
// Otherwise some Database objects may be still alive and registered in
// gLiveDatabaseHashtable at the time the last factory is destroyed.
if (aWhy != Deletion) {
mState = State::SendingResults;
IDB_REPORT_INTERNAL_ERR();
mResultCode = NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR;