diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-06-28 15:27:29 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2014-06-28 15:27:29 +0200 |
commit | af2d105e1e48c593e3536fecbd251671f81ccf9c (patch) | |
tree | 1603adfc7748ebe06998e547ae4cd443fd60bd9e | |
parent | bf8859da400feb876100786df9ac339b48589529 (diff) |
xml: fix attribute without data:
<input checked />
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
-rw-r--r-- | xml.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -27,8 +27,7 @@ xmlparser_parseattrs(XMLParser *x) { if(isspace(c)) { /* TODO: simplify endname ? */ if(namelen) endname = 1; - else - continue; + continue; } if(c == '?') ; /* ignore */ |