mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
[DOM] Clear sinks and block further use after storage observer shutdown.
This commit is contained in:
parent
9299c2e2ea
commit
bc2aa1f05c
2 changed files with 10 additions and 2 deletions
|
|
@ -213,8 +213,10 @@ DOMStorageDBChild::RecvObserve(const nsCString& aTopic,
|
|||
const nsString& aOriginAttributesPattern,
|
||||
const nsCString& aOriginScope)
|
||||
{
|
||||
DOMStorageObserver::Self()->Notify(
|
||||
aTopic.get(), aOriginAttributesPattern, aOriginScope);
|
||||
DOMStorageObserver* observer = DOMStorageObserver::Self();
|
||||
if (observer) {
|
||||
observer->Notify(aTopic.get(), aOriginAttributesPattern, aOriginScope);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue