Skip to content
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

runtime: jmpdefer crash #4951

Closed
dvyukov opened this issue Mar 1, 2013 · 1 comment
Closed

runtime: jmpdefer crash #4951

dvyukov opened this issue Mar 1, 2013 · 1 comment
Milestone

Comments

@dvyukov
Copy link
Member

dvyukov commented Mar 1, 2013

linux/amd64, parent: 15991:4cdeb75811c7 tip

$ cat /tmp/test.go 
package main
import "net"
func main() {
    c, err := net.Dial("tmp", "")
    if err != nil {
        defer c.Close()
    }
}

$ go run /tmp/test.go
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xb code=0x1 addr=0x20 pc=0x41c8d3]

goroutine 1 [running]:
runtime.panic(0x4860b0, 0xc2000382c0)
    src/pkg/runtime/panic.c:246 +0xb1
runtime.panicstring(0x4f8c63)
    src/pkg/runtime/panic.c:479 +0xa3
runtime.sigpanic()
    src/pkg/runtime/thread_linux.c:214 +0x168
runtime.jmpdefer()
    src/pkg/runtime/asm_amd64.s:481 +0x13
main.main()
    /tmp/test.go:8 +0x7a
runtime.main()
    src/pkg/runtime/proc.c:279 +0xae
runtime.goexit()
    src/pkg/runtime/proc.c:316
@dvyukov
Copy link
Member Author

dvyukov commented Mar 1, 2013

Comment 1:

It must be:
    if err == nil {
        defer c.Close()
    }

Status changed to Invalid.

@rsc rsc added this to the Go1.1 milestone Apr 14, 2015
@rsc rsc removed the go1.1maybe label Apr 14, 2015
@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants