You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the above program with go 1.22 exits with 0. With go 1.23 it crashes with
fatal error: unexpected signal during runtime execution
[signal SIGSEGV: segmentation violation code=0x2 addr=0x0 pc=0x10499b8dc]
and a goroutine trace. In this reproducible example it's obvious from the stack trace that the segfault is caused by the ticker.Reset call, but this was not the case in the original!
What did you expect to see?
Exit 0.
The text was updated successfully, but these errors were encountered:
Go version
go version go1.23.1 darwin/arm64
Output of
go env
in your module/workspace:What did you do?
After a some investigation I finally managed to reproduce a strange SIGSEGV: segmentation violation error.
What did you see happen?
Running the above program with go 1.22 exits with 0. With go 1.23 it crashes with
and a goroutine trace. In this reproducible example it's obvious from the stack trace that the segfault is caused by the ticker.Reset call, but this was not the case in the original!
What did you expect to see?
Exit 0.
The text was updated successfully, but these errors were encountered: