12345678910111213141516171819 |
- --TEST--
- SQLite3 - memory leak on SQLite3Result and SQLite3Stmt
- --SKIPIF--
- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
- --FILE--
- <?php
- function test(&$x) {
- $class = new SQLite3(':memory:');
- $x = $class->prepare('SELECT 1');
- }
- test($foo);
- echo "done\n";
- ?>
- --EXPECTF--
- done
|