diff --git a/common/bufio/copy.go b/common/bufio/copy.go index b5cb412..926211e 100644 --- a/common/bufio/copy.go +++ b/common/bufio/copy.go @@ -5,6 +5,7 @@ import ( "errors" "io" "net" + "reflect" "syscall" "github.com/sagernet/sing/common" @@ -292,6 +293,9 @@ func CopyPacketWithSrcBuffer(originSource N.PacketReader, destinationConn N.Pack if err != nil { return } + if buffer == nil { + panic("nil buffer returned from " + reflect.TypeOf(source).String()) + } dataLen := buffer.Len() if dataLen == 0 { continue