mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-05 05:27:40 +03:00
Fix ConnGauge nil crash
This commit is contained in:
parent
ac1233a6f9
commit
214f1cf72c
1 changed files with 6 additions and 2 deletions
|
@ -81,11 +81,15 @@ func (c *serverClient) Run() {
|
|||
if err != nil {
|
||||
break
|
||||
}
|
||||
if c.ConnGauge != nil {
|
||||
c.ConnGauge.Inc()
|
||||
}
|
||||
go func() {
|
||||
c.handleStream(stream)
|
||||
_ = stream.Close()
|
||||
if c.ConnGauge != nil {
|
||||
c.ConnGauge.Dec()
|
||||
}
|
||||
}()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue