You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following snippet of code causes a null pointer to be passed as the first argument of JS_GetPropertyStr, causing a null pointer dereference in JS_NewAtomLen
use quick_js::Context;fnmain(){let context = Context::new().unwrap();
context.eval(r#"(async function() { await new Promise((r,j)=>{for(let i = 0; i < 20; i++);})})() "#).unwrap();}