We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the test program:
fn main() { println!("hello world") }
When started as following it provides this output and fails with exit status 132
$ ./test a b $'\222' You've met with a terrible fate, haven't you? fatal runtime error: Could not unwind stack, error = 5 Illegal instruction
OS: Debian Testing on x86_64
$ rustc --version rustc 0.13.0-nightly (99d6956c3 2014-12-18 20:32:07 +0000)
The text was updated successfully, but these errors were encountered:
I narrowed this down to the range 63c4f22 to 8bca470. Bisecting now.
Sorry, something went wrong.
git bisect blames this on #19152
git bisect
cc @alexcrichton
std: Don't parse argv as a String
5ef9796
Instead, just pass everything through as a Vec<u8> to get worried about later. Closes rust-lang#20091
rollup merge of rust-lang#20100: alexcrichton/issue-20091
b084cda
a666105
Successfully merging a pull request may close this issue.
Given the test program:
When started as following it provides this output and fails with exit status 132
OS: Debian Testing on x86_64
The text was updated successfully, but these errors were encountered: