Index: net/quic/crypto/scoped_evp_aead_ctx.cc |
diff --git a/net/quic/crypto/scoped_evp_aead_ctx.cc b/net/quic/crypto/scoped_evp_aead_ctx.cc |
index 2b5feb37fca55c9f21624bc086314efacb8d6d33..7facf35e218b364e02930cb73cfbfb8b39868edb 100644 |
--- a/net/quic/crypto/scoped_evp_aead_ctx.cc |
+++ b/net/quic/crypto/scoped_evp_aead_ctx.cc |
@@ -7,11 +7,11 @@ |
namespace net { |
ScopedEVPAEADCtx::ScopedEVPAEADCtx() { |
- ctx_.aead = NULL; |
+ ctx_.aead = nullptr; |
} |
ScopedEVPAEADCtx::~ScopedEVPAEADCtx() { |
- if (ctx_.aead != NULL) { |
+ if (ctx_.aead != nullptr) { |
EVP_AEAD_CTX_cleanup(&ctx_); |
} |
} |