Commit 6e70c2c7 authored by Rob Pike's avatar Rob Pike

fix bug in FullyReader

R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=19131
CL=19131
parent 20b9bfb1
......@@ -65,7 +65,7 @@ type FullRead struct {
}
func (fd *FullRead) Read(p *[]byte) (n int, err *os.Error) {
n, err = Readn(fd, p);
n, err = Readn(fd.fd, p);
return n, err
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment