mirror of https://github.com/v2ray/v2ray-core
reset buffer when free
parent
5bbece14af
commit
0c213ccd20
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue