Commit a219ff25 authored by Rui Ueyama's avatar Rui Ueyama

bufio: fix rot13Reader bug in test

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/118410043
parent ed963c90
...@@ -31,9 +31,6 @@ func newRot13Reader(r io.Reader) *rot13Reader { ...@@ -31,9 +31,6 @@ func newRot13Reader(r io.Reader) *rot13Reader {
func (r13 *rot13Reader) Read(p []byte) (int, error) { func (r13 *rot13Reader) Read(p []byte) (int, error) {
n, err := r13.r.Read(p) n, err := r13.r.Read(p)
if err != nil {
return n, err
}
for i := 0; i < n; i++ { for i := 0; i < n; i++ {
c := p[i] | 0x20 // lowercase byte c := p[i] | 0x20 // lowercase byte
if 'a' <= c && c <= 'm' { if 'a' <= c && c <= 'm' {
...@@ -42,7 +39,7 @@ func (r13 *rot13Reader) Read(p []byte) (int, error) { ...@@ -42,7 +39,7 @@ func (r13 *rot13Reader) Read(p []byte) (int, error) {
p[i] -= 13 p[i] -= 13
} }
} }
return n, nil return n, err
} }
// Call ReadByte to accumulate the text of a file // Call ReadByte to accumulate the text of a file
......
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