| Index: webrtc/base/base64.h
|
| diff --git a/webrtc/base/base64.h b/webrtc/base/base64.h
|
| index 903e77e5f95aa3f3c40efcef52159f7f26844ca5..eba3cc0d1d10ca8586b589dfc790e5c46c2e7fd9 100644
|
| --- a/webrtc/base/base64.h
|
| +++ b/webrtc/base/base64.h
|
| @@ -83,7 +83,7 @@ class Base64 {
|
| }
|
| static inline std::string Decode(const std::string& data, DecodeFlags flags) {
|
| std::string result;
|
| - DecodeFromArray(data.data(), data.size(), flags, &result, NULL);
|
| + DecodeFromArray(data.data(), data.size(), flags, &result, nullptr);
|
| return result;
|
| }
|
| static inline bool Decode(const std::string& data,
|
|
|