-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Double-free of ivecs when sending across channel #698
Comments
ghost
assigned pcwalton
Jul 15, 2011
I bet this is the move semantics for channels issue again. Probably both ends drop the reference and then free it... |
I should also note that if you drop the array length to 4 and the double-free problem goes away. |
Not sure if you looked at it yet but I minimized the testcase completely now. |
The test case works for me now. |
This was probably fixed by 54be5b0. |
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this issue
Dec 12, 2017
change type of INADDR constants to in_addr_t These should be `in_addr_t` (u32) instead of `c_int` This is a breaking change but it is just breaking newlib platforms for now. @alexcrichton Do you prefer that I split the definition in submodules, to keep `c_int` in newlib and update the others ?
ZuseZ4
pushed a commit
to EnzymeAD/rust
that referenced
this issue
Mar 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Finally found a minimal-ish testcase! This is blocking me from getting reading working for my async-io work
https://gist.github.com/1083866
The text was updated successfully, but these errors were encountered: