xref: /PHP-8.2/ext/mysqli/tests/bug62885.phpt (revision 62d393b1)
1--TEST--
2Bug #62885 (mysqli_poll - Segmentation fault)
3--EXTENSIONS--
4mysqli
5--SKIPIF--
6<?php
7require_once("connect.inc");
8?>
9--FILE--
10<?php
11error_reporting(E_ALL);
12$tablica = array();
13$test1 = mysqli_poll($test2, $test3, $tablica, 0);
14
15$test2 = array();
16$test2 = array();
17$test1 = mysqli_poll($test2, $test3, $tablica, 0);
18echo "okey";
19?>
20--EXPECTF--
21Warning: mysqli_poll(): No stream arrays were passed in %sbug62885.php on line %d
22
23Warning: mysqli_poll(): No stream arrays were passed in %sbug62885.php on line %d
24okey
25