diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-05-16 15:58:59 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-05-16 15:58:59 +0200 |
commit | d4f666484cd690b15ea9725bed46c6bbc46c8fd8 (patch) | |
tree | 8cd966d07c6aec161455261460447e25477e7fcd | |
parent | 43c435086fc16b4e86468dc8bafcd777ae0eace3 (diff) |
xml: call parse
-rw-r--r-- | xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -362,6 +362,7 @@ xmlparser_parse_string(XMLParser *x, const char *s) { x->str = s; x->getnext = xmlparser_string_getnext; + xmlparser_parse(x); } void @@ -369,4 +370,5 @@ xmlparser_parse_fd(XMLParser *x, int fd) { x->fd = fd; x->getnext = xmlparser_fd_getnext; + xmlparser_parse(x); } |