http3: ignore context after response when using DontCloseRequestStream (#3473)

This commit is contained in:
Marten Seemann 2022-07-24 19:58:12 +01:00 committed by GitHub
parent f29dd273b4
commit 61ca8e89fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 3 deletions

View file

@ -110,7 +110,9 @@ func (r *hijackableBody) requestDone() {
if r.reqDoneClosed || r.reqDone == nil {
return
}
close(r.reqDone)
if r.reqDone != nil {
close(r.reqDone)
}
r.reqDoneClosed = true
}