-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
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
NTSTATUS values are erroneously transformed into Ok(())
#2656
Comments
This is a tangentially related request, but I think it's also more than reasonable to turn off the transformation of This could be a compromise between transforming return codes with |
I don't think I prefer the suggestion to just return |
Note that the Win32 metadata has a way to deal with this through the Note also that |
Summary
NTSTATUS values that are not
STATUS_SUCCESS
(0x0
) are transformed intoOk
rather thanErr
.Crate manifest
Crate code
This test should pass, but it fails instead.
The text was updated successfully, but these errors were encountered: