@@ -47,6 +47,7 @@ func newBytes(size uint32) []byte {
func freeBytes(b []byte) {
size := uint32(cap(b))
+ b = b[0:cap(b)]
for i := numPools - 1; i >= 0; i-- {
ps := poolSize[i]
if size >= ps {