seekbuf lost the Clear function.

This commit is contained in:
Kyle Isom 2022-02-05 15:40:13 -08:00
parent 7793021260
commit c7c51568d8
1 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ func (b *Buffer) Rewind() {
// Close clears all the data out of the buffer and sets the read position to 0.
func (b *Buffer) Close() error {
b.Clear()
b.data = nil
b.pos = 0
return nil
}