-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/bug31177.phpt

--TEST--
Bug #31177 (Memory leak)
--FILE--
<?php
class DbGow {

	public function query() {
		throw new Exception;
	}
	
	public function select() {
		return new DbGowRecordSet($this->query());
	}

	public function select2() {
		new DbGowRecordSet($this->query());
	}

}

class DbGowRecordSet {

	public function __construct($resource) {
	}

}

$db = new DbGow;

try {
	$rs = $db->select();
} catch(Exception $e) {
	echo "ok\n";
}
	
try {
	$db->select2();
} catch(Exception $e) {
	echo "ok\n";
}
?>
--EXPECT--
ok
ok

Copyright © 2017 || Recoded By Mr.Bumblebee