From 8a0ac8d0dbebe02ee2e17b130d7593e36fff2889 Mon Sep 17 00:00:00 2001 From: simon987 Date: Mon, 16 Aug 2021 17:50:01 -0400 Subject: [PATCH] Fix .docx segmentation fault --- libscan/ooxml/ooxml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libscan/ooxml/ooxml.c b/libscan/ooxml/ooxml.c index 1b77ce9..2fd4909 100644 --- a/libscan/ooxml/ooxml.c +++ b/libscan/ooxml/ooxml.c @@ -47,7 +47,7 @@ int extract_text(scan_ooxml_ctx_t *ctx, xmlDoc *xml, xmlNode *node, text_buffer_ } for (xmlNode *child = node; child; child = child->next) { - if (*child->name == 't' && *(child->name + 1) == '\0') { + if (child->name != NULL && *child->name == 't' && *(child->name + 1) == '\0') { xmlChar *text = xmlNodeListGetString(xml, child->xmlChildrenNode, 1); if (text) {