1--TEST--
2Bug #67972: SessionHandler Invalid memory read create_sid()
3--EXTENSIONS--
4session
5--FILE--
6<?php
7
8try {
9    (new SessionHandler)->create_sid();
10} catch (Error $exception) {
11    echo $exception->getMessage() . "\n";
12}
13
14?>
15--EXPECT--
16Session is not active
17