summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xml.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/xml.c b/src/xml.c
index 688dd36..7eec5a6 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -13,12 +13,7 @@
static void escape_xml(cmark_strbuf *dest, const unsigned char *source, bufsize_t length)
{
- if (source != NULL) {
- if (length < 0)
- length = strlen((char *)source);
-
- houdini_escape_html0(dest, source, length, 0);
- }
+ houdini_escape_html0(dest, source, length, 0);
}
struct render_state {