From c7ad8a87383281fff0163e59cdc14655b67d86f4 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 12 Jun 2020 11:23:48 +0200 Subject: [PATCH] Initialize indentation_uses_spaces field This avoids reading a trap representation from _Bool, but shouldn't matter as far as behavior is concerned. --- Zend/zend_language_scanner.l | 1 + 1 file changed, 1 insertion(+) diff --git a/Zend/zend_language_scanner.l b/Zend/zend_language_scanner.l index 4aa024a69a..7b5a8ab1c8 100644 --- a/Zend/zend_language_scanner.l +++ b/Zend/zend_language_scanner.l @@ -2531,6 +2531,7 @@ skip_escape_conversion: } heredoc_label->label = estrndup(s, heredoc_label->length); + heredoc_label->indentation_uses_spaces = 0; heredoc_label->indentation = 0; saved_cursor = YYCURSOR; -- 2.40.0