--TEST-- Bug #69111 Crash in SessionHandler::read() --EXTENSIONS-- session --FILE-- 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