File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -957,7 +957,7 @@ bool HTTPQuicCoroSession::checkAndHandlePushPromiseComplete(
957957 // This stream is awaiting the push promise
958958 auto pushID = *stream.currentPushID ;
959959 stream.currentPushID .reset ();
960- StreamState* pushStreamPtr;
960+ StreamState* pushStreamPtr = nullptr ;
961961 auto it = pushStreamsAwaitingPromises_.find (pushID);
962962 if (it == pushStreamsAwaitingPromises_.end ()) {
963963 // stream has not yet arrived
@@ -3059,7 +3059,7 @@ folly::coro::Task<void> HTTPUniplexTransportSession::writeLoop() noexcept {
30593059 (writableStreams_.empty () || sendWindow_.getSize () == 0 )) {
30603060 writeEvent_.reset ();
30613061 XLOG (DBG6) << " Waiting for writeEvent sess=" << *this ;
3062- TimedBaton::Status status;
3062+ TimedBaton::Status status = TimedBaton::Status::signalled ;
30633063 {
30643064 auto guard = writeExec_.acquireGuard ();
30653065 status =
You can’t perform that action at this time.
0 commit comments