From: Nikita Popov Date: Fri, 12 Jun 2020 09:23:48 +0000 (+0200) Subject: Initialize indentation_uses_spaces field X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c7ad8a87383281fff0163e59cdc14655b67d86f4;p=php Initialize indentation_uses_spaces field This avoids reading a trap representation from _Bool, but shouldn't matter as far as behavior is concerned. --- 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;