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 b22690d commit 2ea1bbbCopy full SHA for 2ea1bbb
src/quic/session.cc
@@ -2257,6 +2257,10 @@ void Session::ExtendOffset(size_t amount) {
2257
2258
void Session::UpdateDataStats() {
2259
Debug(this, "Updating data stats");
2260
+ if (!impl_) {
2261
+ Debug(this, "Updating data stats failed, impl gone!");
2262
+ return;
2263
+ }
2264
auto& stats_ = impl_->stats_;
2265
ngtcp2_conn_info info;
2266
ngtcp2_conn_get_conn_info(*this, &info);
0 commit comments