forked from mirrors/tar-split
archive/tar: cleaner reset
This commit is contained in:
parent
43b7a5effb
commit
50168a6bb3
1 changed files with 2 additions and 4 deletions
|
@ -52,10 +52,8 @@ func (tr *Reader) RawBytes() []byte {
|
||||||
if tr.rawBytes == nil {
|
if tr.rawBytes == nil {
|
||||||
tr.rawBytes = bytes.NewBuffer(nil)
|
tr.rawBytes = bytes.NewBuffer(nil)
|
||||||
}
|
}
|
||||||
defer func() {
|
|
||||||
// if we've read them, then flush them.
|
// if we've read them, then flush them.
|
||||||
tr.rawBytes.Reset()
|
defer tr.rawBytes.Reset()
|
||||||
}()
|
|
||||||
return tr.rawBytes.Bytes()
|
return tr.rawBytes.Bytes()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue