mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Check nil buffer in CopyPacketWithSrcBuffer
This commit is contained in:
parent
8d731e6885
commit
30bf19f283
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue