1
0
Fork 0

main.go: actually write the _post_ buffer ...

This commit is contained in:
Vincent Batts 2015-02-20 14:49:36 -05:00
parent 50168a6bb3
commit c9b618ab48
1 changed files with 8 additions and 4 deletions

12
main.go
View File

@ -45,19 +45,23 @@ func main() {
}
break
}
pre := tr.RawBytes()
output.Write(pre)
sum += int64(len(pre))
var i int64
if i, err = io.Copy(output, tr); err != nil {
log.Println(err)
break
}
post := tr.RawBytes()
output.Write(pre)
fmt.Println(hdr.Name, "pre:", len(pre), "read:", i, "post:", len(post))
sum += int64(len(pre))
sum += i
post := tr.RawBytes()
output.Write(post)
sum += int64(len(post))
fmt.Println(hdr.Name, "pre:", len(pre), "read:", i, "post:", len(post))
}
if size != sum {