long timestamp = 0;
struct tm ta;
int max_reallocs = 5;
-#ifdef PHP_WIN32
- /* VS2012 has a bug where strftime crash with %z and %Z format when the
- initial buffer is too small. Increasing the buffer size helps in a
- workaround to fixs longer format strings for this VS version.
- http://connect.microsoft.com/VisualStudio/feedback/details/759720/vs2012-strftime-crash-with-z-formatting-code
- */
- size_t buf_len = 256;
-#else
- size_t buf_len = 64;
-#endif
- size_t real_len;
+ size_t buf_len = 256, real_len;
timelib_time *ts;
timelib_tzinfo *tzi;
timelib_time_offset *offset = NULL;
#endif
}
+ /* VS2012 crt has a bug where strftime crash with %z and %Z format when the
+ initial buffer is too small. See
+ http://connect.microsoft.com/VisualStudio/feedback/details/759720/vs2012-strftime-crash-with-z-formatting-code */
buf = (char *) emalloc(buf_len);
while ((real_len=strftime(buf, buf_len, format, &ta))==buf_len || real_len==0) {
buf_len *= 2;