diff --git a/base/timer.cpp b/base/timer.cpp index cd14828ed5..d700d1b899 100644 --- a/base/timer.cpp +++ b/base/timer.cpp @@ -64,6 +64,9 @@ uint32_t TodayAsYYMMDD() string TimestampToString(time_t time) { + if (time == INVALID_TIME_STAMP) + return string("INVALID_TIME_STAMP"); + tm * t = gmtime(&time); char buf[21] = { 0 }; #ifdef OMIM_OS_WINDOWS