Update qjs.c

This commit is contained in:
The Ghost of FOSS' Future 2025-01-09 01:03:01 +00:00 committed by GitHub
parent c50f3ac3e1
commit 2eda1aa250
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
qjs.c
View file

@ -181,7 +181,7 @@ static int eval_file(JSContext *ctx, const char *filename, int module)
else
eval_flags = JS_EVAL_TYPE_GLOBAL;
eval_buf(ctx, pf, strlen(pf), "<input>", JS_EVAL_TYPE_MODULE);
//eval_buf(ctx, pf, strlen(pf), "<input>", JS_EVAL_TYPE_MODULE);
ret = eval_buf(ctx, buf, buf_len, filename, eval_flags);
js_free(ctx, buf);
return ret;