You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
410 B

--TEST--
invalid session.save_path should not cause a segfault
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--
session.save_path="123;:/really\\completely:::/invalid;;,23123;213"
session.use_cookies=0
session.cache_limiter=
session.serialize_handler=php
--FILE--
<?php
error_reporting(E_ALL);
@session_start();
$HTTP_SESSION_VARS["test"] = 1;
@session_write_close();
print "I live\n";
?>
--EXPECT--
I live