Skip to content

Commit ef15418

Browse files
committedNov 19, 2024
Fix null deref in js_iterator_helper_next
Fixes: #705
1 parent 0b9b6c1 commit ef15418

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

‎quickjs.c

+3-5
Original file line numberDiff line numberDiff line change
@@ -40615,7 +40615,7 @@ static JSValue js_iterator_helper_next(JSContext *ctx, JSValue this_val,
4061540615

4061640616
it = JS_GetOpaque2(ctx, this_val, JS_CLASS_ITERATOR_HELPER);
4061740617
if (!it)
40618-
goto fail;
40618+
return JS_EXCEPTION;
4061940619
if (it->executing)
4062040620
return JS_ThrowTypeError(ctx, "cannot invoke a running iterator");
4062140621
if (it->done) {
@@ -40847,10 +40847,8 @@ static JSValue js_iterator_helper_next(JSContext *ctx, JSValue this_val,
4084740847
it->executing = 0;
4084840848
return ret;
4084940849
fail:
40850-
if (it) {
40851-
/* close the iterator object, preserving pending exception */
40852-
JS_IteratorClose(ctx, it->obj, TRUE);
40853-
}
40850+
/* close the iterator object, preserving pending exception */
40851+
JS_IteratorClose(ctx, it->obj, TRUE);
4085440852
ret = JS_EXCEPTION;
4085540853
goto done;
4085640854
}

0 commit comments

Comments
 (0)