зеркало из https://github.com/mozilla/gecko-dev.git
Bug 972951 - Make gcparam only accept positive integers. r=evilpie
This commit is contained in:
Родитель
ca17e58e34
Коммит
989e1eec3f
|
@ -311,7 +311,10 @@ GCParameter(JSContext *cx, unsigned argc, Value *vp)
|
|||
}
|
||||
|
||||
uint32_t value;
|
||||
if (!ToUint32(cx, args[1], &value)) {
|
||||
if (!ToUint32(cx, args[1], &value))
|
||||
return false;
|
||||
|
||||
if (!value) {
|
||||
JS_ReportError(cx, "the second argument must be convertable to uint32_t "
|
||||
"with non-zero value");
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче