We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[again, needs CONFIG_ASAN=y in Makefile] Repro: ./qjs JS_GetPropertyInternal.js.TXT
POC fix: diff --git a/quickjs.c b/quickjs.c index a39ff8f..6a2d259 100644 --- a/quickjs.c +++ b/quickjs.c @@ -39079,6 +39079,7 @@ static int64_t JS_FlattenIntoArray(JSContext *ctx, JSValueConst target,
Attached file: JS_GetPropertyInternal.js.TXT
The text was updated successfully, but these errors were encountered:
fixed
Sorry, something went wrong.
Pass strings to C on the heap instead of the stack (bellard#32)
e58ca7b
* failing memory test * pass strings on the heap
Remove operator overloading (bellard#32)
ae17b85
Part of quickjs-ng/quickjs#17
No branches or pull requests
[again, needs CONFIG_ASAN=y in Makefile]
Repro:
./qjs JS_GetPropertyInternal.js.TXT
POC fix:
diff --git a/quickjs.c b/quickjs.c
index a39ff8f..6a2d259 100644
--- a/quickjs.c
+++ b/quickjs.c
@@ -39079,6 +39079,7 @@ static int64_t JS_FlattenIntoArray(JSContext *ctx, JSValueConst target,
Attached file:
JS_GetPropertyInternal.js.TXT
The text was updated successfully, but these errors were encountered: