Check nil buffer in CopyPacketWithSrcBuffer

This commit is contained in:
世界 2023-08-30 21:26:30 +08:00
parent 8d731e6885
commit 30bf19f283
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

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