* PHP-7.4:
Fix #76813: Access violation near NULL on source operand
. Fixed bug #80368 (OpenSSL extension fails to build against LibreSSL due to
lack of OCB support). (Nikita)
+ - Phpdbg:
+ . Fixed bug #76813 (Access violation near NULL on source operand). (cmb)
+
- Standard:
. Fixed bug #80366 (Return Value of zend_fstat() not Checked). (sagpant, cmb)
- . Fixed bug #80411 (References to null-serialized object break serialize()).
- (Nikita)
- Tidy:
. Fixed bug #77594 (ob_tidyhandler is never reset). (cmb)
%% /* Rules */
input
- : command { $$ = $1; }
- | input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; }
+ : non_empty_input { $$ = $1; }
- | /* empty */
+ | %empty
;
+ non_empty_input
+ : command { $$ = $1; }
+ | non_empty_input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; }
+ ;
+
command
: parameters { $$.top = PHPDBG_G(parser_stack)->top; }
| full_expression { phpdbg_stack_push(PHPDBG_G(parser_stack), &$1); $$.top = PHPDBG_G(parser_stack)->top; }