зеркало из https://github.com/mozilla/pjs.git
allow NULL Scripts for JS_NewScriptObject
This commit is contained in:
Родитель
bff88e2fb3
Коммит
863160943a
|
@ -1942,8 +1942,10 @@ JS_NewScriptObject(JSContext *cx, JSScript *script)
|
|||
obj = js_NewObject(cx, &js_ScriptClass, NULL, NULL);
|
||||
if (!obj)
|
||||
return NULL;
|
||||
JS_SetPrivate(cx, obj, script);
|
||||
script->object = obj;
|
||||
if (script) {
|
||||
JS_SetPrivate(cx, obj, script);
|
||||
script->object = obj;
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче