blob: 518ead85d66e118f235a5327de2741f7315b93e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--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";
?>
--EXPECTF--
Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on line %d
Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on line %d
I live
|