diff options
author | Marvin Borner | 2020-11-29 22:17:41 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-29 22:17:41 +0100 |
commit | a80021fa96b07d4ae26d9f85099f4bce09a8f5b3 (patch) | |
tree | b3a95aeb91d783de999e22cc825395957c511f23 /libtxt | |
parent | cb9816c78f25ecc8736cd97c11c839a4c18bcf76 (diff) |
Big steps towards working window resizing
Found some other bugs too
Diffstat (limited to 'libtxt')
-rw-r--r-- | libtxt/html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtxt/html.c b/libtxt/html.c index 4e12555..4fa9789 100644 --- a/libtxt/html.c +++ b/libtxt/html.c @@ -63,7 +63,7 @@ static struct dom *generate_dom(char *data, u32 length) if (err != XML_SUCCESS && err != XML_ERROR_BUFFERDRY) { printf("\nXML parse error: %d\n", err); - return NULL; + /* return NULL; */ } struct dom *root = new_object("root", NULL); |