php-src/ext/sqlite3/tests/sqlite3_prepare_001.phpt

18 lines
223 B
Plaintext
Raw Normal View History

--TEST--
SQLite3 - memory leak on SQLite3Result and SQLite3Stmt
--FILE--
<?php
function test(&$x) {
$class = new SQLite3(':memory:');
$x = $class->prepare('SELECT 1');
}
test($foo);
echo "done\n";
?>
--EXPECTF--
done