mirror of
https://github.com/bellard/quickjs.git
synced 2025-09-27 05:38:45 +03:00
Compare commits
2 Commits
fa628f8c52
...
de4d3927b8
Author | SHA1 | Date | |
---|---|---|---|
|
de4d3927b8 | ||
|
dc7af0ac42 |
@ -40802,8 +40802,10 @@ done:
|
|||||||
goto exception;
|
goto exception;
|
||||||
args[0] = ret;
|
args[0] = ret;
|
||||||
res = JS_Invoke(ctx, arr, JS_ATOM_set, 1, args);
|
res = JS_Invoke(ctx, arr, JS_ATOM_set, 1, args);
|
||||||
if (check_exception_free(ctx, res))
|
if (check_exception_free(ctx, res)) {
|
||||||
|
JS_FreeValue(ctx, arr);
|
||||||
goto exception;
|
goto exception;
|
||||||
|
}
|
||||||
JS_FreeValue(ctx, ret);
|
JS_FreeValue(ctx, ret);
|
||||||
ret = arr;
|
ret = arr;
|
||||||
}
|
}
|
||||||
|
@ -174,7 +174,7 @@ cp Makefile VERSION TODO Changelog readme.txt LICENSE \
|
|||||||
|
|
||||||
cp tests/*.js tests/*.patch tests/bjson.c $outdir/tests
|
cp tests/*.js tests/*.patch tests/bjson.c $outdir/tests
|
||||||
|
|
||||||
cp examples/*.js examples/*.c $outdir/examples
|
cp examples/*.js examples/*.c examples/*.json $outdir/examples
|
||||||
|
|
||||||
cp doc/quickjs.texi doc/quickjs.pdf doc/quickjs.html \
|
cp doc/quickjs.texi doc/quickjs.pdf doc/quickjs.html \
|
||||||
$outdir/doc
|
$outdir/doc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user