mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
74cc4c8cc6
- Removed now redundant previous overflow check, which relied on undefined behavior (wraparound) and was ignored in optimized builds.
37 lines
586 B
PHP
37 lines
586 B
PHP
--TEST--
|
|
Bug #55797: Integer overflow in SdnToGregorian leads to segfault (in optimized builds)
|
|
--SKIPIF--
|
|
<?php
|
|
include 'skipif.inc';
|
|
if (PHP_INT_SIZE != 4) {
|
|
die("skip this test is for 32bit platform only");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$x = 882858030;
|
|
|
|
var_dump(cal_from_jd($x, CAL_GREGORIAN));
|
|
--EXPECTF--
|
|
array(9) {
|
|
["date"]=>
|
|
string(5) "0/0/0"
|
|
["month"]=>
|
|
int(0)
|
|
["day"]=>
|
|
int(0)
|
|
["year"]=>
|
|
int(0)
|
|
["dow"]=>
|
|
int(%d)
|
|
["abbrevdayname"]=>
|
|
string(%d) "%s"
|
|
["dayname"]=>
|
|
string(%d) "%s"
|
|
["abbrevmonth"]=>
|
|
string(0) ""
|
|
["monthname"]=>
|
|
string(0) ""
|
|
}
|
|
|