Bug 328373: Create local variable and copy value to suppress compiler warning
This commit is contained in:
Родитель
7ff0f2689d
Коммит
e156716b4c
|
@ -939,10 +939,12 @@ JS_EvaluateInStackFrame(JSContext *cx, JSStackFrame *fp,
|
|||
{
|
||||
jschar *chars;
|
||||
JSBool ok;
|
||||
size_t len = length;
|
||||
|
||||
chars = js_InflateString(cx, bytes, &length);
|
||||
chars = js_InflateString(cx, bytes, &len);
|
||||
if (!chars)
|
||||
return JS_FALSE;
|
||||
length = (uintN) len;
|
||||
ok = JS_EvaluateUCInStackFrame(cx, fp, chars, length, filename, lineno,
|
||||
rval);
|
||||
JS_free(cx, chars);
|
||||
|
|
Загрузка…
Ссылка в новой задаче