Index: src/base/platform/platform-aix.cc |
diff --git a/src/base/platform/platform-aix.cc b/src/base/platform/platform-aix.cc |
index 513f5c8ecaa9723931442c703dd57741d6272498..03e9aa3717f9def19af83e0ca7c48cb0d1d5be14 100644 |
--- a/src/base/platform/platform-aix.cc |
+++ b/src/base/platform/platform-aix.cc |
@@ -46,7 +46,7 @@ static inline void* mmapHelper(size_t len, int prot, int flags, int fildes, |
const char* OS::LocalTimezone(double time, TimezoneCache* cache) { |
if (std::isnan(time)) return ""; |
time_t tv = static_cast<time_t>(floor(time / msPerSecond)); |
- struct tm* t = localtime(&tv); |
+ struct tm* t = localtime(&tv); // NOLINT(runtime/threadsafe_fn) |
if (NULL == t) return ""; |
return tzname[0]; // The location of the timezone string on AIX. |
} |
@@ -56,7 +56,7 @@ double OS::LocalTimeOffset(TimezoneCache* cache) { |
// On AIX, struct tm does not contain a tm_gmtoff field. |
time_t utc = time(NULL); |
DCHECK(utc != -1); |
- struct tm* loc = localtime(&utc); |
+ struct tm* loc = localtime(&utc); // NOLINT(runtime/threadsafe_fn) |
DCHECK(loc != NULL); |
return static_cast<double>((mktime(loc) - utc) * msPerSecond); |
} |