mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Merge pull request #10 from mmeyerho/master
Fixed an html-parsing crash caused by refactor
This commit is contained in:
commit
f12af3c539
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ impl util_methods for parser {
|
|||
loop {
|
||||
alt self.get() {
|
||||
coe_char(c) {
|
||||
if c.is_whitespace() {
|
||||
if !c.is_whitespace() {
|
||||
self.unget(c);
|
||||
ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue