mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-13 07:24:47 +00:00
Bug 1411578 - MutableBlobStorage should check if the error has been already propagated, r=smaug
This commit is contained in:
parent
58c22f74cd
commit
44947dd6fe
@ -652,8 +652,10 @@ MutableBlobStorage::ErrorPropagated(nsresult aRv)
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
mErrorResult = aRv;
|
||||
|
||||
mActor->SendOperationDone(false, EmptyCString());
|
||||
mActor = nullptr;
|
||||
if (mActor) {
|
||||
mActor->SendOperationDone(false, EmptyCString());
|
||||
mActor = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user