1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:34:41 -07:00

io: fix nil Write bug in Pipe

R=nigeltao_golang
CC=golang-dev
https://golang.org/cl/194132
This commit is contained in:
Russ Cox 2010-01-28 17:38:51 -08:00
parent d7a5ccf36e
commit 6039a414ae
2 changed files with 23 additions and 1 deletions

View File

@ -39,7 +39,7 @@ func (p *pipe) Read(data []byte) (n int, err os.Error) {
if !p.wclosed { if !p.wclosed {
p.wpend = <-p.cr p.wpend = <-p.cr
} }
if p.wpend == nil { if p.wclosed {
return 0, p.werr return 0, p.werr
} }
p.wtot = 0 p.wtot = 0

View File

@ -236,3 +236,25 @@ func TestPipeWriteClose(t *testing.T) {
} }
} }
} }
func TestWriteEmpty(t *testing.T) {
r, w := Pipe()
go func() {
w.Write([]byte{})
w.Close()
}()
var b [2]byte
ReadFull(r, b[0:2])
r.Close()
}
func TestWriteNil(t *testing.T) {
r, w := Pipe()
go func() {
w.Write(nil)
w.Close()
}()
var b [2]byte
ReadFull(r, b[0:2])
r.Close()
}