css: Don't infloop when resyncing over a slash

This commit is contained in:
Benjamin Otte 2011-05-28 00:07:10 +02:00
parent beccec296b
commit b1aa59d385

View File

@ -898,7 +898,9 @@ _gtk_css_parser_resync_internal (GtkCssParser *parser,
}
parser->data++;
continue;
case '/':
default:
parser->data++;
break;
}
} while (*parser->data);