1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-26 00:10:27 +00:00

Check sandbox capabilities instead of ignoring unknown ones.

This commit is contained in:
Calvin Rose 2023-02-06 17:38:00 -06:00
parent 37b7e170fa
commit 73c2fbbc2a

View File

@ -715,6 +715,7 @@ JANET_CORE_FN(janet_core_sandbox,
}
opt++;
}
if (opt->name == NULL) janet_panicf("unknown capability %v", argv[i]);
}
janet_sandbox(flags);
return janet_wrap_nil();