Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
pdo_firebird /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
CONFLICTS
9
B
-rw-rw-r--
2022-10-31 11:36
bug_47415.phpt
882
B
-rw-rw-r--
2022-10-31 11:36
bug_48877.phpt
921
B
-rw-rw-r--
2022-10-31 11:36
bug_53280.phpt
1.12
KB
-rw-rw-r--
2022-10-31 11:36
bug_62024.phpt
916
B
-rw-rw-r--
2022-10-31 11:36
bug_64037.phpt
1.01
KB
-rw-rw-r--
2022-10-31 11:36
bug_72583.phpt
543
B
-rw-rw-r--
2022-10-31 11:36
bug_72931.phpt
439
B
-rw-rw-r--
2022-10-31 11:36
bug_73087.phpt
643
B
-rw-rw-r--
2022-10-31 11:36
bug_74462.phpt
704
B
-rw-rw-r--
2022-10-31 11:36
bug_76448.data
749
B
-rw-rw-r--
2022-10-31 11:36
bug_76448.phpt
697
B
-rw-rw-r--
2022-10-31 11:36
bug_76449.data
464
B
-rw-rw-r--
2022-10-31 11:36
bug_76449.phpt
700
B
-rw-rw-r--
2022-10-31 11:36
bug_76450.data
464
B
-rw-rw-r--
2022-10-31 11:36
bug_76450.phpt
815
B
-rw-rw-r--
2022-10-31 11:36
bug_76452.data
856
B
-rw-rw-r--
2022-10-31 11:36
bug_76452.phpt
696
B
-rw-rw-r--
2022-10-31 11:36
bug_76488.phpt
612
B
-rw-rw-r--
2022-10-31 11:36
bug_77863.phpt
3.1
KB
-rw-rw-r--
2022-10-31 11:36
bug_aaa.phpt
528
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
848
B
-rw-rw-r--
2022-10-31 11:36
connect.phpt
211
B
-rw-rw-r--
2022-10-31 11:36
ddl.phpt
965
B
-rw-rw-r--
2022-10-31 11:36
dialect_1.phpt
1.3
KB
-rw-rw-r--
2022-10-31 11:36
execute.phpt
1.25
KB
-rw-rw-r--
2022-10-31 11:36
payload_server.inc
2.5
KB
-rw-rw-r--
2022-10-31 11:36
payload_server.php
478
B
-rw-rw-r--
2022-10-31 11:36
payload_test.data
424
B
-rw-rw-r--
2022-10-31 11:36
payload_test.phpt
654
B
-rw-rw-r--
2022-10-31 11:36
rowCount.phpt
950
B
-rw-rw-r--
2022-10-31 11:36
skipif.inc
202
B
-rw-rw-r--
2022-10-31 11:36
testdb.inc
595
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- PDO_Firebird: bug 53280 segfaults if query column count is less than param count --SKIPIF-- <?php require('skipif.inc'); ?> --ENV-- LSAN_OPTIONS=detect_leaks=0 --FILE-- <?php require("testdb.inc"); @$dbh->exec('DROP TABLE testz'); $dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))'); $dbh->exec("INSERT INTO testz VALUES ('A', 'B', 'C')"); $dbh->commit(); $stmt1 = "SELECT B FROM testz WHERE A = ? AND B = ?"; $stmt2 = "SELECT B, C FROM testz WHERE A = ? AND B = ?"; $stmth2 = $dbh->prepare($stmt2); $stmth2->execute(array('A', 'B')); $rows = $stmth2->fetchAll(); // <------ OK var_dump($rows); $stmth1 = $dbh->prepare($stmt1); $stmth1->execute(array('A', 'B')); $rows = $stmth1->fetchAll(); // <------- segfault var_dump($rows); $dbh->commit(); unset($stmth1); unset($stmth2); $dbh->exec('DROP TABLE testz'); unset($stmt); unset($dbh); ?> --EXPECT-- array(1) { [0]=> array(4) { ["B"]=> string(1) "B" [0]=> string(1) "B" ["C"]=> string(1) "C" [1]=> string(1) "C" } } array(1) { [0]=> array(2) { ["B"]=> string(1) "B" [0]=> string(1) "B" } }