mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
18 lines
339 B
PHP
18 lines
339 B
PHP
--TEST--
|
|
session_decode(); should not segfault
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.use_cookies=0
|
|
session.cache_limiter=
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
@session_decode("garbage data and no session started");
|
|
@session_decode("userid|s:5:\"mazen\";chatRoom|s:1:\"1\";");
|
|
print "I live\n";
|
|
?>
|
|
--EXPECT--
|
|
I live
|