Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / net / quic / crypto / scoped_evp_aead_ctx.cc
index 2b5feb3..7facf35 100644 (file)
@@ -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_);
   }
 }