php-src/ext/standard/tests/strings/strripos_offset.phpt
Antony Dovgal 8de1ecef64 MFH: fix segfault in strripos() when offset == INT_MAX+1
identified and repoted by Joxean Koret
2007-05-10 22:10:43 +00:00

46 lines
1.4 KiB
PHP

--TEST--
strripos() offset integer overflow
--FILE--
<?php
var_dump(strripos("t", "t", PHP_INT_MAX+1));
var_dump(strripos("tttt", "tt", PHP_INT_MAX+1));
var_dump(strripos(100, 101, PHP_INT_MAX+1));
var_dump(strripos(1024, 1024, PHP_INT_MAX+1));
var_dump(strripos(array(), array(), PHP_INT_MAX+1));
var_dump(strripos(1024, 1024, -PHP_INT_MAX));
var_dump(strripos(1024, "te", -PHP_INT_MAX));
var_dump(strripos(1024, 1024, -PHP_INT_MAX-1));
var_dump(strripos(1024, "te", -PHP_INT_MAX-1));
echo "Done\n";
?>
--EXPECTF--
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Warning: strripos() expects parameter 1 to be string, array given in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Notice: strripos(): Offset is greater than the length of haystack string in %s on line %d
bool(false)
Done