fix: tfoConn panic

This commit is contained in:
wwqgtxx 2023-05-16 14:55:50 +08:00
parent 8b631f11b8
commit e552b5475f

View File

@ -18,10 +18,11 @@ type tfoConn struct {
} }
func (c *tfoConn) Dial(earlyData []byte) (err error) { func (c *tfoConn) Dial(earlyData []byte) (err error) {
c.Conn, err = c.dialFn(c.ctx, earlyData) conn, err := c.dialFn(c.ctx, earlyData)
if err != nil { if err != nil {
return return
} }
c.Conn = conn
c.dialed <- true c.dialed <- true
return err return err
} }