File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 9
9
. Fixed bug GH-16302 (CurlMultiHandle holds a reference to CurlHandle if
10
10
curl_multi_add_handle fails). (timwolla)
11
11
12
+ - PHPDBG:
13
+ . Fixed bug GH-16174 (Empty string is an invalid expression for ev). (cmb)
14
+
12
15
- XMLReader:
13
16
. Fixed bug GH-16292 (Segmentation fault in ext/xmlreader/php_xmlreader.c).
14
17
(nielsdos)
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ ID [^ \r\n\t:#\000]+
82
82
GENERIC_ID ([^ \r\n\t:#\000"']|":\\")+|["]([^\n\000"\\]|"\\\\"|"\\"["])+["]|[']([^\n\000'\\]|"\\\\"|"\\"['])+[']
83
83
ADDR [0][x][a-fA-F0-9]+
84
84
OPCODE (ZEND_|zend_)([A-Z_a-z])+
85
- INPUT ("\\"[#"']|["]("\\\\"|"\\"["]|[^\n\000"])+ ["]|[']("\\"[']|"\\\\"|[^\n\000'])+ [']|[^\n\000#"'])+
85
+ INPUT ("\\"[#"']|["]("\\\\"|"\\"["]|[^\n\000"])* ["]|[']("\\"[']|"\\\\"|[^\n\000'])* [']|[^\n\000#"'])+
86
86
87
87
<!*> := yyleng = (size_t) YYCURSOR - (size_t) yytext;
88
88
Original file line number Diff line number Diff line change
1
+ --TEST--
2
+ GH-16174 (Empty string is an invalid expression for phpdbg-ev)
3
+ --PHPDBG--
4
+ ev $e = ""
5
+ ev $f = ''
6
+ --EXPECT--
7
+ prompt>
8
+ prompt>
9
+ prompt>
10
+ prompt>
You can’t perform that action at this time.
0 commit comments