diff --git a/common/bufio/copy.go b/common/bufio/copy.go index 00d78b0..bc1b1d8 100644 --- a/common/bufio/copy.go +++ b/common/bufio/copy.go @@ -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) diff --git a/common/bufio/copy_direct_posix.go b/common/bufio/copy_direct_posix.go index 8f79c94..870097c 100644 --- a/common/bufio/copy_direct_posix.go +++ b/common/bufio/copy_direct_posix.go @@ -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 {