Explorar el Código

reset buffer when free

Darien Raymond hace 7 años
padre
commit
0c213ccd20
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      common/buf/buffer_pool.go

+ 1 - 0
common/buf/buffer_pool.go

@@ -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 {