mirror of
https://github.com/php/php-src.git
synced 2024-12-14 12:26:19 +08:00
527ad1d80c
Cast to size_t before performing operations instead of afterwards.
17 lines
308 B
PHP
17 lines
308 B
PHP
--TEST--
|
|
Accessing PHP_INT_MAX and PHP_INT_MIN as string offsets
|
|
--FILE--
|
|
<?php
|
|
|
|
$str = "";
|
|
var_dump($str[PHP_INT_MAX]);
|
|
var_dump($str[PHP_INT_MIN]);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Uninitialized string offset: %d in %s on line %d
|
|
string(0) ""
|
|
|
|
Notice: Uninitialized string offset: -%d in %s on line %d
|
|
string(0) ""
|