Skip to content
Snippets Groups Projects
Commit 752fdc39 authored by deuce's avatar deuce
Browse files

Ah, THAT'S what the second argument HANDLE_PENDING() grew is.

parent c84f3896
No related branches found
No related tags found
No related merge requests found
......@@ -496,7 +496,7 @@ js_create_signature(JSContext *cx, uintN argc, jsval *arglist)
sigCtx = JSVAL_TO_OBJECT(argv[0]);
if (!JS_InstanceOf(cx, sigCtx, &js_cryptcon_class, NULL))
return JS_FALSE;
HANDLE_PENDING(cx, sigCtx);
HANDLE_PENDING(cx, NULL);
if ((scp=(struct private_data *)JS_GetPrivate(cx,sigCtx))==NULL) {
JS_ReportError(cx, getprivate_failure, WHERE);
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