Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: webrtc/p2p/base/jseptransport.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/p2p/base/jseptransport.cc
diff --git a/webrtc/p2p/base/jseptransport.cc b/webrtc/p2p/base/jseptransport.cc
index 9018a643d87a7c45ccf0422fca4d1da3d6775c55..29cb8c057a9c9e5a2401dfc67d8e99ea1d17aa12 100644
--- a/webrtc/p2p/base/jseptransport.cc
+++ b/webrtc/p2p/base/jseptransport.cc
@@ -313,7 +313,7 @@ bool JsepTransport::VerifyCertificateFingerprint(
}
std::unique_ptr<rtc::SSLFingerprint> fp_tmp(rtc::SSLFingerprint::Create(
fingerprint->algorithm, certificate->identity()));
- RTC_DCHECK(fp_tmp.get() != NULL);
+ RTC_DCHECK(fp_tmp.get() != nullptr);
if (*fp_tmp == *fingerprint) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698