Skip to content

Commit 2115878

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Sync fix for bug #72498 for 32-bit
2 parents 062f93c + 821f13f commit 2115878

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ext/com_dotnet/com_variant.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1012,13 +1012,13 @@ PHP_FUNCTION(variant_date_from_timestamp)
10121012
tzset();
10131013
ttstamp = timestamp;
10141014
tmv = localtime(&ttstamp);
1015-
#if ZEND_ENABLE_ZVAL_LONG64
1015+
10161016
/* Invalid after 23:59:59, December 31, 3000, UTC */
10171017
if (!tmv) {
10181018
php_error_docref(NULL, E_WARNING, "Invalid timestamp " ZEND_LONG_FMT, timestamp);
10191019
RETURN_FALSE;
10201020
}
1021-
#endif
1021+
10221022
memset(&systime, 0, sizeof(systime));
10231023

10241024
systime.wDay = tmv->tm_mday;

ext/com_dotnet/tests/bug72498.phpt

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Bug #72498 variant_date_from_timestamp null dereference
33
--SKIPIF--
44
<?php # vim:ft=php
55
if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present";
6-
if (PHP_INT_SIZE != 8) print "skip 64-bit only";
76
?>
87
--FILE--
98
<?php

0 commit comments

Comments
 (0)