-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Invalid free() on exit (32-bit build under valgrind) #10982
Comments
It would be nice if the stack trace actually pointed somewhere outside libc and libgcc. |
@pao, naturally :) I can also reproduce if I modify I will try to bisect this when I get a chance. |
This seems to be at least as old as |
Does the patch from #7511 help? |
I managed to get my |
OK, my multiarch environment had a difficult time compiling older versions, so I decided to try a different type of "bisect". I set Here's the original link command:
If I remove |
Turns out, |
Adding |
Would that hurt anything to add everywhere? |
No, that should be fine. |
It seems that julia attempts to call
free(0xffffffff)
on exit when built for 32 bits:Make.user
is as follows:In fact, I can reproduce this both with and without
MEMDEBUG
. I am running Debian jessie (64 bits).The text was updated successfully, but these errors were encountered: