зеркало из https://github.com/mozilla/gecko-dev.git
Bug 939420 - Fix shell neuter() function to return |undefined| instead of itself. r=jorendorff
This commit is contained in:
Родитель
6978af8a0c
Коммит
5de6f6b9cb
|
@ -1329,7 +1329,11 @@ Neuter(JSContext *cx, unsigned argc, jsval *vp)
|
|||
return false;
|
||||
}
|
||||
|
||||
return JS_NeuterArrayBuffer(cx, obj);
|
||||
if (!JS_NeuterArrayBuffer(cx, obj))
|
||||
return false;
|
||||
|
||||
args.rval().setUndefined();
|
||||
return true;
|
||||
}
|
||||
|
||||
static const JSFunctionSpecWithHelp TestingFunctions[] = {
|
||||
|
|
Загрузка…
Ссылка в новой задаче