mirror of
https://github.com/php/php-src.git
synced 2025-01-06 10:53:39 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
24 lines
623 B
PHP
24 lines
623 B
PHP
--TEST--
|
|
Bug #38710 (data leakage because of nonexisting boundary checking in statements)
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
require_once('skipifconnectfailure.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once("connect.inc");
|
|
|
|
$db = new my_mysqli($host, $user, $passwd, $db, $port, $socket);
|
|
$qry=$db->stmt_init();
|
|
$qry->prepare("SELECT REPEAT('a',100000)");
|
|
$qry->execute();
|
|
$qry->bind_result($text);
|
|
$qry->fetch();
|
|
if ($text !== str_repeat('a', ($IS_MYSQLND || mysqli_get_server_version($db) > 50110)? 100000:(mysqli_get_server_version($db)>=50000? 8193:8191))) {
|
|
var_dump(strlen($text));
|
|
}
|
|
echo "Done";
|
|
?>
|
|
--EXPECT--
|
|
Done
|