From: Ilia Alshanetsky Date: Wed, 25 Sep 2002 12:20:56 +0000 (+0000) Subject: prevent segv on Windows with negative localtime values. X-Git-Tag: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003~198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=322a24a5262743a8e7c904b7a8c435be17a17160;p=php prevent segv on Windows with negative localtime values. --- diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 5dc2b5d259..386236a73c 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -194,9 +194,13 @@ void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm) } t = mktime(ta); - if (t == -1) { + +#ifdef PHP_WIN32 + if (t < 0) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Windows does not support negative values for this function"); RETURN_LONG(-1); } +#endif seconds = t - chgsecs; @@ -646,7 +650,15 @@ PHP_FUNCTION(localtime) assoc_array = Z_LVAL_PP(assoc_array_arg); break; } - if (timestamp < 0 || NULL == (ta = php_localtime_r(×tamp, &tmbuf))) { + +#ifdef PHP_WIN32 + if (timestamp < 0) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Windows does not support negative values for this function"); + RETURN_FALSE + } +#endif + + if (NULL == (ta = php_localtime_r(×tamp, &tmbuf))) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid local time"); RETURN_FALSE; }