File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ PHP NEWS
2222 . Fixed bug GH-20442 (Phar does not respect case-insensitiveness of
2323 __halt_compiler() when reading stub). (ndossche, TimWolla)
2424
25+ - PHPDBG:
26+ . Fixed ZPP type violation in phpdbg_get_executable() and phpdbg_end_oplog().
27+ (Girgias)
28+
2529- Standard:
2630 . Fix memory leak in array_diff() with custom type checks. (ndossche)
2731
Original file line number Diff line number Diff line change @@ -493,7 +493,7 @@ PHP_FUNCTION(phpdbg_get_executable)
493493 HashTable * files = & PHPDBG_G (file_sources );
494494 HashTable files_tmp ;
495495
496- if (zend_parse_parameters (ZEND_NUM_ARGS (), "|H " , & options ) == FAILURE ) {
496+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "|h " , & options ) == FAILURE ) {
497497 RETURN_THROWS ();
498498 }
499499
@@ -587,7 +587,7 @@ PHP_FUNCTION(phpdbg_end_oplog)
587587 bool by_function = false;
588588 bool by_opcode = false;
589589
590- if (zend_parse_parameters (ZEND_NUM_ARGS (), "|H " , & options ) == FAILURE ) {
590+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "|h " , & options ) == FAILURE ) {
591591 RETURN_THROWS ();
592592 }
593593
You can’t perform that action at this time.
0 commit comments