-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Casting 0 to extern "C" fn
is permitted
#8730
Comments
The correct type for a nullable extern pointer is |
In light of that, I'm not sure if there is still a bug here or not? |
Ah! That does work, and makes sense. I didn't know you could use Option that way and it would still match the C signature of just a pointer--Option is an enum after all, and the current version of the FFI reference specifically says there are no guarantees about the layout of an enum. But as far as usability goes it's great. All I would ask is for this to be documented the FFI tutorial and in the reference manual. I wouldn't have expected it to be there yet, since nothing from #8666 is documented yet, which I assume is a different issue altogether, or at least in progress. (Given this, am I expected to close the bug here? Or should only people with commit access be doing that?) |
Do not close the bug, |
oh, nm, dup of #8728 |
How does one deal with this in the case of APIs that are not correctly wrapped in an option? Like this one: Edit: |
@nikomatsakis Is it still true that |
[FP] identity_op in front of if fix rust-lang#8724 changelog: FP: [`identity_op`]: is now allowed in front of if statements, blocks and other expressions where the suggestion would be invalid. Resolved simular problems with blocks, mathces, and loops. identity_op always does NOT suggest reducing `0 + if b { 1 } else { 2 } + 3` into `if b { 1 } else { 2 } + 3` even in the case that the expression is in `f(expr)` or `let x = expr;` for now.
…swij,xFrednet `identity_op`: add parenthesis to suggestions where required changelog: [`identity_op`]: add parenthesis to suggestions where required Follow up to rust-lang#8730, wraps the cases we can't lint as-is in parenthesis rather than ignoring them Catches a couple new FPs with mixed operator precedences and `as` casts ```rust // such as 0 + { a } * 2; 0 + a as usize; ``` The suggestions are now applied using `span_lint_and_sugg` rather than appearing in just the message and have a `run-rustfix` test
Now that #8666 is in place, there is not a good way to make a NULL
extern "C" fn
. You can do it, but you have to specify the whole type of the function pointer again withas
:using
std::ptr::null()
will not compile, and gives:Some C APIs really do need to have NULL passed in for function pointers. Right now, using
as
like the code above is the only way to create such a null pointer; For those cases where you need to pass a NULL into a C API, it would be nice ifstd::ptr::null()
would work for that, without having to repeat the whole type (including all arguments and return type) of the function pointer in order to do it.UPDATE: Title amended by @nikomatsakis to reflect the real issue at hand.
The text was updated successfully, but these errors were encountered: