mirror of
https://github.com/php/php-src.git
synced 2024-12-23 00:40:33 +08:00
18 lines
466 B
PHP
18 lines
466 B
PHP
--TEST--
|
|
Bug #73452 Segfault (Regression for #69152)
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$data = 'O:9:"SoapFault":4:{s:9:"faultcode";i:4298448493;s:11:"faultstring";i:4298448543;s:7:"'."\0*\0".'file";i:4298447319;s:7:"'."\0*\0".'line";s:4:"ryat";}';
|
|
echo unserialize($data);
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECTF--
|
|
SoapFault exception: [4298448493] 4298448543 in :0
|
|
Stack trace:
|
|
#0 %sbug73452.php(4): unserialize('O:9:"SoapFault"...')
|
|
#1 {main}==DONE==
|