diff options
Diffstat (limited to 'libtxt/xml.c')
-rw-r--r-- | libtxt/xml.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libtxt/xml.c b/libtxt/xml.c index 90fd553..b92181b 100644 --- a/libtxt/xml.c +++ b/libtxt/xml.c @@ -250,7 +250,7 @@ static enum xml_error parse_attributes(struct xml *state, struct xml_args *args) } #define TAG_LEN(str) (sizeof(str) - 1) -#define TAG_MINSIZE 3 +#define TAG_MINSIZE 1 static enum xml_error parse_comment(struct xml *state, struct xml_args *args) { @@ -319,7 +319,6 @@ static enum xml_error parse_doctype(struct xml *state, struct xml_args *args) const char *bracket; const char *start = buffer_from_offset(args, state->buffer_pos); const char *end = buffer_getend(args); - print("GOT HERE\n"); if (end - start < (int)TAG_LEN(START_TAG)) return XML_ERROR_BUFFERDRY; @@ -330,7 +329,6 @@ static enum xml_error parse_doctype(struct xml *state, struct xml_args *args) bracket = str_findstr(start, end, END_TAG); if (bracket == end) return XML_ERROR_BUFFERDRY; - print("GOT HERE!!!!\n"); state_push_token(state, args, XML_DOCTYPE, start, bracket); return state_set_pos(state, args, bracket + TAG_LEN(END_TAG)); @@ -487,6 +485,10 @@ enum xml_error xml_parse(struct xml *state, const char *buffer, u32 buffer_lengt state_commit(state, &temp); } + // TODO: Only for self-closing tags + if (end - lt == 0) + break; + if (end - lt < TAG_MINSIZE) return XML_ERROR_BUFFERDRY; |