http3: fix double close of chan when using DontCloseRequestStream (#3561)

This commit is contained in:
Marten Seemann 2022-09-23 13:10:25 +03:00 committed by GitHub
parent 17761bf35f
commit 424a66389c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 61 additions and 56 deletions

View file

@ -301,6 +301,7 @@ func (c *client) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Respon
}
c.conn.CloseWithError(quic.ApplicationErrorCode(rerr.connErr), reason)
}
return nil, rerr.err
}
if opt.DontCloseRequestStream {
close(reqDone)