mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
17 lines
264 B
PHP
17 lines
264 B
PHP
--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
|