Skip to content
Snippets Groups Projects
Commit 887c5723 authored by rswindell's avatar rswindell
Browse files

More fixes for bugs introduced in the great JavaScript-C (SpiderMonkey) upgrade

of 2011:
- Memory leak in log() when passed multiple string arguments.
- print/write/writeln would all choke when passed multiple arguments
  (display the first argument repeatedly)
  and leak memory.
parent 844daac1
Branches
Tags
No related merge requests found
......@@ -314,13 +314,13 @@ js_log(JSContext *cx, uintN argc, jsval *arglist)
rc=JS_SUSPENDREQUEST(cx);
lprintf(level,"%s",logstr);
JS_RESUMEREQUEST(cx, rc);
FREE_AND_NULL(logstr);
}
if(logstr==NULL)
if(str==NULL)
JS_SET_RVAL(cx, arglist, JSVAL_VOID);
else
JS_SET_RVAL(cx, arglist, STRING_TO_JSVAL(str));
free(logstr);
return(JS_TRUE);
}
......@@ -397,13 +397,14 @@ js_write(JSContext *cx, uintN argc, jsval *arglist)
JS_SET_RVAL(cx, arglist, JSVAL_VOID);
for (i = 0; i < argc; i++) {
if((str=JS_ValueToString(cx, argv[0]))==NULL)
if((str=JS_ValueToString(cx, argv[i]))==NULL)
return(JS_FALSE);
JSSTRING_TO_RASTRING(cx, str, line, &line_sz, NULL);
if(line==NULL)
return(JS_FALSE);
rc=JS_SUSPENDREQUEST(cx);
fprintf(confp,"%s",line);
FREE_AND_NULL(line);
JS_RESUMEREQUEST(cx, rc);
}
......@@ -411,8 +412,6 @@ js_write(JSContext *cx, uintN argc, jsval *arglist)
JS_SET_RVAL(cx, arglist, JSVAL_VOID);
else
JS_SET_RVAL(cx, arglist, STRING_TO_JSVAL(str));
if(line)
free(line);
return(JS_TRUE);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment