1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
--TEST--
Bug #69111 Crash in SessionHandler::read()
--EXTENSIONS--
session
--FILE--
<?php
$sh = new SessionHandler;
session_set_save_handler($sh);
// session_start(); // Uncommenting this makes it not crash when reading the session (see below), but it will not return any data.
try {
$sh->open('path', 'name');
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
try {
$sh->write("foo", "bar");
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
try {
$sh->read("");
} catch (Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
Session is not active
Session is not active
Session is not active
|