kill HAVE_LOCALTIME_R
Bug: 18361583 Change-Id: If76334a6e18893b65d9b526271620a460a75bf22
This commit is contained in:
@@ -356,7 +356,7 @@ time_t ZipEntry::getModWhen(void) const
|
||||
*/
|
||||
void ZipEntry::setModWhen(time_t when)
|
||||
{
|
||||
#ifdef HAVE_LOCALTIME_R
|
||||
#if !defined(_WIN32)
|
||||
struct tm tmResult;
|
||||
#endif
|
||||
time_t even;
|
||||
@@ -368,7 +368,7 @@ void ZipEntry::setModWhen(time_t when)
|
||||
even = (time_t)(((unsigned long)(when) + 1) & (~1));
|
||||
|
||||
/* expand */
|
||||
#ifdef HAVE_LOCALTIME_R
|
||||
#if !defined(_WIN32)
|
||||
ptm = localtime_r(&even, &tmResult);
|
||||
#else
|
||||
ptm = localtime(&even);
|
||||
|
Reference in New Issue
Block a user