mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
* Deprecate warnings in SQLite3, change returned exception class to SQLite3Exception RFC: https://wiki.php.net/rfc/sqlite3_exceptions Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
27 lines
668 B
PHP
27 lines
668 B
PHP
--TEST--
|
|
Bug #69972 (Use-after-free vulnerability in sqlite3SafetyCheckSickOrOk())
|
|
--EXTENSIONS--
|
|
sqlite3
|
|
--FILE--
|
|
<?php
|
|
$db = new SQLite3(':memory:');
|
|
echo "SELECTING from invalid table\n";
|
|
$result = $db->query("SELECT * FROM non_existent_table");
|
|
echo "Closing database\n";
|
|
var_dump($db->close());
|
|
echo "Done\n";
|
|
|
|
// Trigger the use-after-free
|
|
echo "Error Code: " . $db->lastErrorCode() . "\n";
|
|
echo "Error Msg: " . $db->lastErrorMsg() . "\n";
|
|
?>
|
|
--EXPECTF--
|
|
SELECTING from invalid table
|
|
|
|
Warning: SQLite3::query(): Unable to prepare statement: no such table: non_existent_table in %sbug69972.php on line %d
|
|
Closing database
|
|
bool(true)
|
|
Done
|
|
Error Code: 0
|
|
Error Msg:
|