Bug 793580 - Part 1: Use unsigned types in ExceptionArgParser::parseResult; r=ehsan

--HG--
extra : rebase_source : 456e3643b4d5cac96d2c6f0435581e9502037c79
This commit is contained in:
Mark Banner 2012-09-27 14:19:06 -04:00
parent e37f597727
commit 3e12fb40c3

View File

@ -1879,7 +1879,7 @@ struct NS_STACK_CLASS ExceptionArgParser
}
bool parseResult(JS::Value &v) {
return JS_ValueToECMAInt32(cx, v, (int32_t*) &eResult);
return JS_ValueToECMAUint32(cx, v, (uint32_t*) &eResult);
}
bool parseStack(JS::Value &v) {