We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51adabe commit 21f0e82Copy full SHA for 21f0e82
src/node_http2.cc
@@ -1366,14 +1366,15 @@ void Http2Session::ClearOutgoing(int status) {
1366
CHECK_NE(flags_ & SESSION_STATE_SENDING, 0);
1367
1368
if (outgoing_buffers_.size() > 0) {
1369
+ outgoing_storage_.clear();
1370
+
1371
for (const nghttp2_stream_write& wr : outgoing_buffers_) {
1372
WriteWrap* wrap = wr.req_wrap;
1373
if (wrap != nullptr)
1374
wrap->Done(status);
1375
}
1376
1377
outgoing_buffers_.clear();
- outgoing_storage_.clear();
1378
1379
1380
flags_ &= ~SESSION_STATE_SENDING;
0 commit comments