forked from AuroraMiddleware/gtk
cssparser: Fix cases where we could overrun the terminating 0
This commit is contained in:
parent
62d231aeff
commit
8d6b560ff3
@ -875,17 +875,20 @@ _gtk_css_parser_resync_internal (GtkCssParser *parser,
|
||||
case '(':
|
||||
parser->data++;
|
||||
_gtk_css_parser_resync (parser, FALSE, ')');
|
||||
parser->data++;
|
||||
if (*parser->data)
|
||||
parser->data++;
|
||||
break;
|
||||
case '[':
|
||||
parser->data++;
|
||||
_gtk_css_parser_resync (parser, FALSE, ']');
|
||||
parser->data++;
|
||||
if (*parser->data)
|
||||
parser->data++;
|
||||
break;
|
||||
case '{':
|
||||
parser->data++;
|
||||
_gtk_css_parser_resync (parser, FALSE, '}');
|
||||
parser->data++;
|
||||
if (*parser->data)
|
||||
parser->data++;
|
||||
if (sync_at_semicolon || !terminator)
|
||||
{
|
||||
_gtk_css_parser_skip_whitespace (parser);
|
||||
@ -902,6 +905,8 @@ _gtk_css_parser_resync_internal (GtkCssParser *parser,
|
||||
}
|
||||
parser->data++;
|
||||
continue;
|
||||
case '\0':
|
||||
break;
|
||||
case '/':
|
||||
default:
|
||||
parser->data++;
|
||||
|
Loading…
Reference in New Issue
Block a user