Fix: grpc connection panic

This commit is contained in:
gVisor bot 2021-03-18 23:19:00 +08:00
parent 764e469ada
commit 5842c94b17

View file

@ -81,6 +81,8 @@ func (g *Conn) Read(b []byte) (n int, err error) {
g.buf = nil
}
return
} else if g.response == nil {
return 0, net.ErrClosed
}
buf := make([]byte, 5)