Back out the null-check workaround for bug 1182197 on trunk, so we can see what the stacks look like after all via crash-stats data on nightly and dev channel.

This commit is contained in:
Boris Zbarsky 2015-09-18 13:38:42 -04:00
parent 014b80cb7e
commit 84dd49c9f3

View File

@ -1368,7 +1368,7 @@ Promise::Settle(JS::Handle<JS::Value> aValue, PromiseState aState)
}
#endif
if (!mGlobal || mGlobal->IsDying()) {
if (mGlobal->IsDying()) {
return;
}