mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +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"
|
"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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue