Follow-up to bug 755808 comment 6. rs=sfink on #jsapi.

This commit is contained in:
Jason Orendorff 2012-05-30 15:05:58 -05:00
Родитель f0f6913bfd
Коммит c93194b516
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -796,12 +796,12 @@ Evaluate(JSContext *cx, unsigned argc, jsval *vp)
return false;
}
bool newContext;
RootedObject global(cx, NULL);
bool newContext = false;
bool compileAndGo = true;
const char *fileName = "@evaluate";
JSAutoByteString fileNameBytes;
unsigned lineNumber = 1;
RootedObject global(cx, NULL);
global = JS_GetGlobalForObject(cx, JSVAL_TO_OBJECT(JS_CALLEE(cx, vp)));
if (!global)