| Index: net/tools/quic/quic_in_memory_cache.cc
|
| diff --git a/net/tools/quic/quic_in_memory_cache.cc b/net/tools/quic/quic_in_memory_cache.cc
|
| index 779c9a2865e712f3551b380a8b6b9a38ae82a043..6754cf26480be0701e44dc208570350665eaa056 100644
|
| --- a/net/tools/quic/quic_in_memory_cache.cc
|
| +++ b/net/tools/quic/quic_in_memory_cache.cc
|
| @@ -72,7 +72,7 @@ const QuicInMemoryCache::Response* QuicInMemoryCache::GetResponse(
|
| const BalsaHeaders& request_headers) const {
|
| ResponseMap::const_iterator it = responses_.find(GetKey(request_headers));
|
| if (it == responses_.end()) {
|
| - return NULL;
|
| + return nullptr;
|
| }
|
| return it->second;
|
| }
|
|
|