dont segfault on empty token "match"

This commit is contained in:
anon 2023-09-20 22:43:12 +02:00
parent dcdd3abb8c
commit 55ffd41892

View File

@ -16,11 +16,13 @@ void cterm_render_callback(const char * const string,
} }
terminal_hl_t * term_hl = (terminal_hl_t*)attributes; terminal_hl_t * term_hl = (terminal_hl_t*)attributes;
if (term_hl->attribute) { if (term_hl) {
fputs(term_hl->attribute, stdout); if (term_hl->attribute) {
} fputs(term_hl->attribute, stdout);
if (term_hl->foreground_color) { }
fputs(term_hl->foreground_color, stdout); if (term_hl->foreground_color) {
fputs(term_hl->foreground_color, stdout);
}
} }
for (int i = 0; i < length; i++) { for (int i = 0; i < length; i++) {
putchar(*(string+i)); putchar(*(string+i));