-
Notifications
You must be signed in to change notification settings - Fork 18k
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
cmd/go: stack overflow caused due to typo in package name #45863
Labels
FrozenDueToAge
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
okay-after-beta1
Used by release team to mark a release-blocker issue as okay to resolve either before or after beta1
Milestone
Comments
Intriguingly, the specific crash seems to be fixed in Go 1.17 beta 1:
|
This comment has been minimized.
This comment has been minimized.
Ah, there is still an infinite loop in
|
Change https://golang.org/cl/330430 mentions this issue: |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
FrozenDueToAge
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
okay-after-beta1
Used by release team to mark a release-blocker issue as okay to resolve either before or after beta1
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
The wrong package name in the go file led to stack overflow by
go list
.Particularly in this commit, the
datastore_health.go
was accidentally made a file in thesql
package though it should have been indatastore
package.What did you expect to see?
An error that possibly terminates the program without overflowing memory.
What did you see instead?
A stack overflow caused due to
go list
./cc @bcmills @heschi
The text was updated successfully, but these errors were encountered: