mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
b2b61661ed
- MFH: Fix bug #43841. - MFH: Remove redundant trailing dots from the error messages. - MFH: Fix tests.
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
--TEST--
|
|
strrpos() offset integer overflow
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(strrpos("t", "t", PHP_INT_MAX+1));
|
|
var_dump(strrpos("tttt", "tt", PHP_INT_MAX+1));
|
|
var_dump(strrpos(100, 101, PHP_INT_MAX+1));
|
|
var_dump(strrpos(1024, 1024, PHP_INT_MAX+1));
|
|
var_dump(strrpos(1024, 1024, -PHP_INT_MAX));
|
|
var_dump(strrpos(1024, "te", -PHP_INT_MAX));
|
|
var_dump(strrpos(1024, 1024, -PHP_INT_MAX-1));
|
|
var_dump(strrpos(1024, "te", -PHP_INT_MAX-1));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
|
|
bool(false)
|
|
Done
|