aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-03 18:31:49 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-03 18:31:49 +0200
commit11d3632fe4508bfd2f668b7b1c4d75a88cd6449d (patch)
treea5f4fb2d7d24997f80b6522b5b39b50b153c9ed1 /src
parent8252e711129208d77b28809fee71319a2b8086aa (diff)
Fix attribute value without quote (first char was skipped)
Diffstat (limited to 'src')
-rw-r--r--src/HtmlParser.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/HtmlParser.c b/src/HtmlParser.c
index 287f322..a760f98 100644
--- a/src/HtmlParser.c
+++ b/src/HtmlParser.c
@@ -382,7 +382,6 @@ static int html_parser_parse_tag_start(HtmlParser *self) {
html_parser_advance_char(self);
html_parser_parse_attribute_value_quoted(self, c);
} else if(is_attribute_value_char(c)) {
- html_parser_advance_char(self);
html_parser_parse_attribute_value(self);
}
}