mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-06-13 20:09:36 +03:00
Add recover() to H2 server's flushWriter.Write()
Fixes https://github.com/XTLS/Xray-core/issues/1748
This commit is contained in:
@ -204,7 +204,7 @@ type WaitReadCloser struct {
|
||||
func (w *WaitReadCloser) Set(rc io.ReadCloser) {
|
||||
w.ReadCloser = rc
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
if recover() != nil {
|
||||
rc.Close()
|
||||
}
|
||||
}()
|
||||
@ -225,10 +225,8 @@ func (w *WaitReadCloser) Close() error {
|
||||
return w.ReadCloser.Close()
|
||||
}
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
if w.ReadCloser != nil {
|
||||
w.ReadCloser.Close()
|
||||
}
|
||||
if recover() != nil && w.ReadCloser != nil {
|
||||
w.ReadCloser.Close()
|
||||
}
|
||||
}()
|
||||
close(w.Wait)
|
||||
|
Reference in New Issue
Block a user