1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-24 03:04:49 +00:00

Merge pull request #1663 from McSinyx/dobytes-err-keep

Keep dobytes' error string
This commit is contained in:
Calvin Rose
2025-11-09 08:40:07 -06:00
committed by GitHub

View File

@@ -122,7 +122,8 @@ int janet_dobytes(JanetTable *env, const uint8_t *bytes, int32_t len, const char
janet_loop();
if (fiber) {
janet_gcunroot(janet_wrap_fiber(fiber));
ret = fiber->last_value;
if (!errflags)
ret = fiber->last_value;
}
}
#endif