pull/432/head
Darien Raymond 8 years ago
parent d792faff70
commit 891b8a03de
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

@ -52,11 +52,11 @@ type bufferToBytesReader struct {
// fill fills in the internal buffer.
func (v *bufferToBytesReader) fill() {
b, err := v.stream.Read()
v.current = b
if err != nil {
v.err = err
v.current = nil
return
}
v.current = b
}
func (v *bufferToBytesReader) Read(b []byte) (int, error) {

Loading…
Cancel
Save