My working unpac space for OCaml projects in development
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

removed use after free in js_create_module_bytecode_function() (#467)

+1 -1
+1 -1
vendor/git/quickjs-c/quickjs.c
··· 29957 29957 29958 29958 if (JS_IsException(func_obj)) 29959 29959 return -1; 29960 + m->func_obj = func_obj; 29960 29961 b = JS_VALUE_GET_PTR(bfunc); 29961 29962 func_obj = js_closure2(ctx, func_obj, b, NULL, NULL, TRUE, m); 29962 29963 if (JS_IsException(func_obj)) { ··· 29964 29965 JS_FreeValue(ctx, func_obj); 29965 29966 return -1; 29966 29967 } 29967 - m->func_obj = func_obj; 29968 29968 return 0; 29969 29969 } 29970 29970