17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #67972: SessionHandler Invalid memory read create_sid()
|
||
|
|
--EXTENSIONS--
|
||
|
|
session
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
try {
|
||
|
|
(new SessionHandler)->create_sid();
|
||
|
|
} catch (Error $exception) {
|
||
|
|
echo $exception->getMessage() . "\n";
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
Session is not active
|