diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-10-23 10:50:55 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-10-23 10:50:55 +0200 |
commit | 7b24ea0f936c8a576b2eda4c72a46141456319e3 (patch) | |
tree | e0c13f118878f1d5d7d9a050d34354132f6b852f /netwerk | |
parent | 22c83a87f7eb71ddbfb8d83be21edef3150a0e63 (diff) | |
download | uxp-7b24ea0f936c8a576b2eda4c72a46141456319e3.tar.gz |
Add null check in Http2Session::RecvAltSvc
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/protocol/http/Http2Session.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netwerk/protocol/http/Http2Session.cpp b/netwerk/protocol/http/Http2Session.cpp index 86e8c74f64..726b39f74b 100644 --- a/netwerk/protocol/http/Http2Session.cpp +++ b/netwerk/protocol/http/Http2Session.cpp @@ -2182,6 +2182,7 @@ Http2Session::RecvAltSvc(Http2Session *self) } if (NS_FAILED(self->SetInputFrameDataStream(self->mInputFrameID)) || + !self->mInputFrameDataStream || !self->mInputFrameDataStream->Transaction() || !self->mInputFrameDataStream->Transaction()->RequestHead()) { LOG3(("Http2Session::RecvAltSvc %p got frame w/o origin on invalid stream", self)); |