
The first frame after sigpanic didn't execute a call so we shouldn't decrement the PC address to look up its location. Fixes #3634
9 lines
102 B
Go
9 lines
102 B
Go
package main
|
|
|
|
import "os"
|
|
|
|
func main() {
|
|
fi, _ := os.Lstat("/this/path/does/not/exist")
|
|
fi.Size()
|
|
}
|