summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-90-quiche-uniqueptr.patch
blob: 21183a671170c8ea099458d8e07582c734eb40b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/net/third_party/quiche/src/quic/core/quic_path_validator.cc b/net/third_party/quiche/src/quic/core/quic_path_validator.cc
index f2abef054..b419c9070 100644
--- a/net/third_party/quiche/src/quic/core/quic_path_validator.cc
+++ b/net/third_party/quiche/src/quic/core/quic_path_validator.cc
@@ -68,7 +68,7 @@ void QuicPathValidator::OnPathResponse(const QuicPathFrameBuffer& probing_data,
 void QuicPathValidator::StartPathValidation(
     std::unique_ptr<QuicPathValidationContext> context,
     std::unique_ptr<ResultDelegate> result_delegate) {
-  QUICHE_DCHECK(context);
+  QUICHE_DCHECK(context.get());
   QUIC_DLOG(INFO) << "Start validating path " << *context
                   << " via writer: " << context->WriterToUse();
   if (path_context_ != nullptr) {