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
thread 'main' panicked at src/runtime.rs:439:38:
called `Result::unwrap()` on an `Err` value: Error { kind: UnexpectedEof, message: "failed to fill whole buffer" }
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
This is unfortunately an bug which I have introduced.
Possible solutions:
Block indefinitely (not sure how this could be useful with piped input).
Immediately halt / terminate the program.
Put some dummy value in R0 (eg. 0).
Don't modify R0 (this seems dangerous).
I think 2. and 3. are the best solutions.
The text was updated successfully, but these errors were encountered:
IN
This is unfortunately an bug which I have introduced.
Possible solutions:
R0
(eg.0
).R0
(this seems dangerous).I think 2. and 3. are the best solutions.
The text was updated successfully, but these errors were encountered: