diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-17 17:11:06 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-17 17:11:06 +0100 |
commit | 67d336a6f27889bdef4723194b6611d049830266 (patch) | |
tree | 0c12d48070ecb0afb2e0e2a23a63fce94547c2a7 | |
parent | e4c4c20e7e539d891c3f10b6ef5608c08699c077 (diff) | |
download | uxp-67d336a6f27889bdef4723194b6611d049830266.tar.gz |
No issue - Fix unsafe http methods on HTTP/2 with TLSv1.3 0RTT.
-rw-r--r-- | netwerk/protocol/http/Http2Stream.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/netwerk/protocol/http/Http2Stream.cpp b/netwerk/protocol/http/Http2Stream.cpp index 22d8142c92..4401a26120 100644 --- a/netwerk/protocol/http/Http2Stream.cpp +++ b/netwerk/protocol/http/Http2Stream.cpp @@ -1478,8 +1478,12 @@ bool Http2Stream::Do0RTT() { MOZ_ASSERT(mTransaction); - mAttempting0RTT = true; - return mTransaction->Do0RTT(); + if mTransaction->Do0RTT() { + mAttempting0RTT = true; + } else { + mAttempting0RTT = false; + } + return mAttempting0RTT; } nsresult |