mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
17 lines
362 B
PHP
17 lines
362 B
PHP
--TEST--
|
|
Bug #79332 (php_istreams are never freed)
|
|
--EXTENSIONS--
|
|
com_dotnet
|
|
--FILE--
|
|
<?php
|
|
$ph = new COMPersistHelper(null);
|
|
try {
|
|
$ph->LoadFromStream(fopen(__FILE__, 'r'));
|
|
} catch (com_exception $ex) {
|
|
// use hard-coded message to avoid localization issues
|
|
echo "A com_exception has been thrown\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
A com_exception has been thrown
|