mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Fix gun conn setup
This commit is contained in:
parent
83581b7c1a
commit
2eecdc38a4
1 changed files with 3 additions and 1 deletions
|
@ -49,7 +49,9 @@ func newLateGunConn(writer io.Writer) *GunConn {
|
|||
}
|
||||
|
||||
func (c *GunConn) setup(reader io.Reader, err error) {
|
||||
c.reader = std_bufio.NewReader(reader)
|
||||
if reader != nil {
|
||||
c.reader = std_bufio.NewReader(reader)
|
||||
}
|
||||
c.err = err
|
||||
close(c.create)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue