diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-05 13:04:44 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-05 13:04:44 +0200 |
commit | a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca (patch) | |
tree | 24d69034f60ed1f6bf79cccfbbe05f10c26238ff /gfx | |
parent | c3916ca1a0164dcb7742360a43d7ab36a80907fc (diff) | |
download | UXP-a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca.tar UXP-a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca.tar.gz UXP-a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca.tar.lz UXP-a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca.tar.xz UXP-a80267e9e88b3dcebf7f8f1f6f10931a99ddf2ca.zip |
Bug 604026 - Sync event loops in workers should be created only if compatible with the worker shutdown status
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/thebes/gfxUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/thebes/gfxUtils.cpp b/gfx/thebes/gfxUtils.cpp index 313372ebc..401bceaa9 100644 --- a/gfx/thebes/gfxUtils.cpp +++ b/gfx/thebes/gfxUtils.cpp @@ -1477,7 +1477,7 @@ gfxUtils::ThreadSafeGetFeatureStatus(const nsCOMPtr<nsIGfxInfo>& gfxInfo, status); ErrorResult rv; - runnable->Dispatch(rv); + runnable->Dispatch(dom::workers::Terminating, rv); if (rv.Failed()) { // XXXbz This is totally broken, since we're supposed to just abort // everything up the callstack but the callers basically eat the |