1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00

fix lint warnings

This commit is contained in:
Darien Raymond 2018-05-28 23:05:11 +02:00
parent e3508fffc6
commit 8f6e162142
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -56,7 +56,7 @@ func freeBytes(b []byte) {
b = b[0:cap(b)]
for i := numPools - 1; i >= 0; i-- {
if size >= poolSize[i] {
pool[i].Put(b)
pool[i].Put(b) // nolint: megacheck
return
}
}