зеркало из https://github.com/mozilla/pjs.git
Null pointer check to prevent a crash by edit from desktop for Japanese path name, bug 59466, r=akkana, sr=brendan.
This commit is contained in:
Родитель
a210f0ef09
Коммит
39f19e239d
|
@ -698,7 +698,8 @@ nsJSContext::ExecuteScript(void* aScriptObject,
|
|||
PRBool* aIsUndefined)
|
||||
{
|
||||
if (!mScriptsEnabled) {
|
||||
*aIsUndefined = PR_TRUE;
|
||||
if (aIsUndefined)
|
||||
*aIsUndefined = PR_TRUE;
|
||||
if (aRetValue)
|
||||
aRetValue->Truncate();
|
||||
return NS_OK;
|
||||
|
|
Загрузка…
Ссылка в новой задаче