Merge "kill HAVE_LOCALTIME_R"

This commit is contained in:
Yabin Cui
2014-11-13 18:14:12 +00:00
committed by Gerrit Code Review

View File

@@ -338,7 +338,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;
@@ -350,7 +350,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);