mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
simplify code
This commit is contained in:
parent
47c92fafc8
commit
141b31eb19
@ -49,8 +49,7 @@ 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 {
|
||||
if size >= poolSize[i] {
|
||||
pool[i].Put(b)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user