File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ Bug #66481: Calls to session_name() segfault when session.name is null, Windows.
3
+ --INI--
4
+ session.name=
5
+ --SKIPIF--
6
+ <?php include ('skipif.inc ' ); ?>
7
+ <?php if (substr (PHP_OS , 0 , 3 ) != "WIN " ) die ("skip Windows only " ); ?>
8
+ --FILE--
9
+ <?php
10
+
11
+ var_dump (session_name ("foo " ));
12
+ var_dump (session_name ("bar " ));
13
+ --EXPECTF --
14
+ Warning: PHP Startup: session.name cannot be a numeric or empty '' in Unknown on line 0
15
+ string(9 ) "PHPSESSID "
16
+ string (3 ) "foo "
17
+ PHP Warning: PHP Startup: session.name cannot be a numeric or empty '' in Unknown on line 0
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Bug #66481: Calls to session_name() segfault when session.name is null.
4
4
session.name=
5
5
--SKIPIF--
6
6
<?php include ('skipif.inc ' ); ?>
7
+ <?php if (substr (PHP_OS , 0 , 3 ) == "WIN " ) die ("skip Not for Windows " ); ?>
7
8
--FILE--
8
9
<?php
9
10
You can’t perform that action at this time.
0 commit comments