-
Notifications
You must be signed in to change notification settings - Fork 18k
runtime: apparent memory corruption #6655
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
Labels
Milestone
Comments
We run the "go test -race ./..." command in CI for every one of our commits, but admittingly it doesn't reach this point in the code. But the part where this is failing isn't even multi-threaded regarding any of the variables in that method. The full stack trace is here, to show not many goroutines are doing much: https://gist.github.com/MasonM/7103218/raw/860eb0cafe82d196cdde91befa0a0cd9396231ab/crash.log |
This looks like memory corruption or bad locking. issue #4869 was very similar, caused by misaligned 64-bit atomics on 32-bit systems. However, you are on a 64-bit system so I don't think that's the problem. When issue #4869 came up I spent a long time reading the math/big division routines, and I believe the code is correct. So this is probably another memory corruption, somehow. Perhaps Dmitriy has an idea. It is definitely concerning that you saw this. Please let us know if you can reproduce it. Labels changed: added priority-later, go1.2maybe, removed priority-triage. Status changed to Accepted. |
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: