mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
25 lines
702 B
PHP
25 lines
702 B
PHP
--TEST--
|
|
Bug #73679 DOTNET read access violation using invalid codepage
|
|
--EXTENSIONS--
|
|
com_dotnet
|
|
--SKIPIF--
|
|
<?php
|
|
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
|
|
if (!class_exists("dotnet")) die("skip mscoree not available");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$stack = new DOTNET("mscorlib", "System.Collections.Stack", -2200000000);
|
|
$stack->Push(".Net");
|
|
$stack->Push("Hello ");
|
|
echo $stack->Pop() . $stack->Pop();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught com_exception: Could not create .Net object - invalid codepage! in %sbug73679.php:%d
|
|
Stack trace:
|
|
#0 %sbug73679.php(%d): dotnet->__construct('mscorlib', 'System.Collecti...', -2200000000)
|
|
#1 {main}
|
|
thrown in %sbug73679.php on line %d
|