We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following program panics. Should return error.
package main import ( "bytes" "encoding/hex" "golang.org/x/net/spdy" "io/ioutil" ) func main() { data, _ := hex.DecodeString("30303030") framer, err := spdy.NewFramer(ioutil.Discard, bytes.NewReader(data)) if err != nil { panic(err) } for ;; { f, err := framer.ReadFrame() if err != nil { if f != nil { panic(err) } return } err = framer.WriteFrame(f) if err != nil { panic(err) } } }
panic: EOF
on commit 6f62f426de90c0ed6a55207b51476115fcb17237
The text was updated successfully, but these errors were encountered:
https://go-review.googlesource.com/#/c/9274/
Sorry, something went wrong.
golang/net@ff8eb9a
No branches or pull requests
The following program panics. Should return error.
on commit 6f62f426de90c0ed6a55207b51476115fcb17237
The text was updated successfully, but these errors were encountered: