73cc96
diff --git a/parser/expat/lib/xmlparse.c b/parser/expat/lib/xmlparse.c
73cc96
--- a/parser/expat/lib/xmlparse.c
73cc96
+++ b/parser/expat/lib/xmlparse.c
73cc96
@@ -5652,12 +5652,18 @@
73cc96
   else
73cc96
 #endif /* XML_DTD */
73cc96
   {
73cc96
     processor = contentProcessor;
73cc96
     /* see externalEntityContentProcessor vs contentProcessor */
73cc96
-    return doContent(parser, parentParser ? 1 : 0, encoding, s, end,
73cc96
-                     nextPtr, (XML_Bool)!ps_finalBuffer);
73cc96
+    result = doContent(parser, parser->m_parentParser ? 1 : 0,
73cc96
+                       parser->m_encoding, s, end, nextPtr,
73cc96
+                       (XML_Bool)! parser->m_parsingStatus.finalBuffer);
73cc96
+    if (result == XML_ERROR_NONE) {
73cc96
+      if (! storeRawNames(parser))
73cc96
+        return XML_ERROR_NO_MEMORY;
73cc96
+    }
73cc96
+    return result;
73cc96
   }
73cc96
 }
73cc96
 
73cc96
 static enum XML_Error PTRCALL
73cc96
 errorProcessor(XML_Parser parser,
73cc96