mirror of
https://github.com/golang/go
synced 2024-11-20 02:54:39 -07:00
tar: use ioutil.Discard
This one didn't come up in previous greps. R=adg CC=golang-dev https://golang.org/cl/4430071
This commit is contained in:
parent
9d12307a12
commit
bb1ec0dfc8
@ -10,6 +10,7 @@ package tar
|
||||
import (
|
||||
"bytes"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
@ -84,12 +85,6 @@ func (tr *Reader) octal(b []byte) int64 {
|
||||
return int64(x)
|
||||
}
|
||||
|
||||
type ignoreWriter struct{}
|
||||
|
||||
func (ignoreWriter) Write(b []byte) (n int, err os.Error) {
|
||||
return len(b), nil
|
||||
}
|
||||
|
||||
// Skip any unread bytes in the existing file entry, as well as any alignment padding.
|
||||
func (tr *Reader) skipUnread() {
|
||||
nr := tr.nb + tr.pad // number of bytes to skip
|
||||
@ -99,7 +94,7 @@ func (tr *Reader) skipUnread() {
|
||||
return
|
||||
}
|
||||
}
|
||||
_, tr.err = io.Copyn(ignoreWriter{}, tr.r, nr)
|
||||
_, tr.err = io.Copyn(ioutil.Discard, tr.r, nr)
|
||||
}
|
||||
|
||||
func (tr *Reader) verifyChecksum(header []byte) bool {
|
||||
|
Loading…
Reference in New Issue
Block a user