Fix copyPacketWaitWithPool

This commit is contained in:
世界 2023-04-27 23:17:30 +08:00
parent a23ffbaeb5
commit ed2d05ab51
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 3 additions and 1 deletions

View file

@ -71,7 +71,7 @@ func CopyExtended(originDestination io.Writer, destination N.ExtendedWriter, sou
return
}
}
if N.IsUnsafeWriter(destination) {
if !common.UnsafeBuffer || N.IsUnsafeWriter(destination) {
return CopyExtendedWithPool(originDestination, destination, source, readCounters, writeCounters)
}
bufferSize := N.CalculateMTU(source, destination)

View file

@ -113,6 +113,8 @@ func copyPacketWaitWithPool(destinationConn N.PacketWriter, source N.PacketReadW
if err != nil {
buffer.Release()
return
} else {
buffer = nil
}
n += int64(dataLen)
for _, counter := range readCounters {