Skip to content
Snippets Groups Projects
Commit 6fcc9868 authored by deuce's avatar deuce
Browse files

get_size() only works on objects... fix crash.

parent e9db9649
No related branches found
No related tags found
No related merge requests found
......@@ -3492,6 +3492,10 @@ static JSBool js_getsize(JSContext *cx, uintN argc, jsval *arglist)
{
jsval *argv=JS_ARGV(cx, arglist);
if(!JSVAL_IS_OBJECT(argv[0])) {
JS_ReportError(cx, "get_size() error! Parameter is not an object.");
return(JS_FALSE);
}
JSObject* tmp_obj=JSVAL_TO_OBJECT(argv[0]);
if(!tmp_obj)
return(JS_FALSE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment