1
1

startup: prevent a crash when no applicable syntax is found

This fixes https://savannah.gnu.org/bugs/?56434.

Signed-off-by: Brand Huntsman <alpha@qzx.com>
Этот коммит содержится в:
Brand Huntsman 2019-06-03 16:34:27 -06:00 коммит произвёл Benno Schulenberg
родитель 9b30bb15cc
Коммит fb10a94f35

Просмотреть файл

@ -274,7 +274,7 @@ void color_update(void)
}
/* When the syntax isn't loaded yet, parse it and initialize its colors. */
if (sint->filename != NULL) {
if (sint != NULL && sint->filename != NULL) {
parse_one_include(sint->filename, sint);
set_syntax_colorpairs(sint);
}