

2·
2 months agoimagine the diffs
imagine the diffs
Uninitialized automatic variables. E.g. (in C/C++):
int get_time() {
int time;
syscall(/* something that fails */, &time);
return time;
}
Rust seems to think panicking is better: https://github.com/rust-lang/rust/issues/115482
probably the worst option for a library
Even worse than returning garbage? :)
but how many COMEFROMs are there