mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.garbage] all: merge default into dev.garbage
This picks up the selectdone dangling pointer fix, among others. LGTM=rlh R=rlh CC=golang-codereviews https://golang.org/cl/153070045
This commit is contained in:
commit
9ba99011fa
19 changed files with 786 additions and 928 deletions
|
|
@ -177,6 +177,9 @@ func releaseSudog(s *sudog) {
|
|||
if s.elem != nil {
|
||||
gothrow("runtime: sudog with non-nil elem")
|
||||
}
|
||||
if s.selectdone != nil {
|
||||
gothrow("runtime: sudog with non-nil selectdone")
|
||||
}
|
||||
gp := getg()
|
||||
if gp.param != nil {
|
||||
gothrow("runtime: releaseSudog with non-nil gp.param")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue