зеркало из https://github.com/mozilla/gecko-dev.git
Guard against possible NullPointerException if the Context has not been properly entered.
This commit is contained in:
Родитель
dfb69c7a8d
Коммит
aea0fb6d79
|
@ -60,7 +60,7 @@ public class OptIRFactory extends IRFactory {
|
|||
(Node) statements,
|
||||
nameHelper);
|
||||
Context cx = Context.getCurrentContext();
|
||||
if (cx.getDebugLevel() > 0)
|
||||
if (cx != null && cx.getDebugLevel() > 0)
|
||||
result.setRequiresActivation(true);
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ public class OptIRFactory extends IRFactory {
|
|||
(Node) statements,
|
||||
nameHelper);
|
||||
Context cx = Context.getCurrentContext();
|
||||
if (cx.getDebugLevel() > 0)
|
||||
if (cx != null && cx.getDebugLevel() > 0)
|
||||
result.setRequiresActivation(true);
|
||||
return result;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче