Index: src/base/platform/platform-qnx.cc |
diff --git a/src/base/platform/platform-qnx.cc b/src/base/platform/platform-qnx.cc |
index 04ca6659bd9aa074d35c717c5fb85e36cc8347b3..b16652886e681dd337a907dcede9b2889f8a905a 100644 |
--- a/src/base/platform/platform-qnx.cc |
+++ b/src/base/platform/platform-qnx.cc |
@@ -88,7 +88,7 @@ bool OS::ArmUsingHardFloat() { |
const char* OS::LocalTimezone(double time, TimezoneCache* cache) { |
if (std::isnan(time)) return ""; |
time_t tv = static_cast<time_t>(std::floor(time/msPerSecond)); |
- struct tm* t = localtime(&tv); |
+ struct tm* t = localtime(&tv); // NOLINT(runtime/threadsafe_fn) |
if (NULL == t) return ""; |
return t->tm_zone; |
} |
@@ -96,7 +96,7 @@ const char* OS::LocalTimezone(double time, TimezoneCache* cache) { |
double OS::LocalTimeOffset(TimezoneCache* cache) { |
time_t tv = time(NULL); |
- struct tm* t = localtime(&tv); |
+ struct tm* t = localtime(&tv); // NOLINT(runtime/threadsafe_fn) |
// tm_gmtoff includes any daylight savings offset, so subtract it. |
return static_cast<double>(t->tm_gmtoff * msPerSecond - |
(t->tm_isdst > 0 ? 3600 * msPerSecond : 0)); |