mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
ee15f2005b
- Issue #2889 - Part 0: Relocate Mozilla-specific files from Expat source. (b81b97ee) - Issue #2889 - Part 1: Prepare Mozilla's changes and extensions for Expat 2.6.4. (95676016) - Issue #2889 - Part 2: Import Expat 2.6.4 source. (9ade98b4) - Issue #2889 - Part 3: Apply Mozilla's patches to Expat 2.6.4. (0b9e221b) - Issue #2889 - Part 4: Fix build and runtime issues. (a2f8e661) - Issue #2889 - Follow-up: Avoid conflicts with system version of libexpat (e0f8acdd) - Issue #2889 - Follow-up: void methods shouldn't return a value. (8956c611) - Issue #2889 - Part 5: Rewrite patches for Expat 2.7.3. (a730f838) - Issue #2889 - Part 6: Import Expat 2.7.3 source. (d2acec73) - Issue #2889 - Part 7: Apply patches to Expat 2.7.3. (ca2ef518) - Issue #2889 - Follow-up: Allow generate_hash_secret_salt to be used. (acefed74) - Issue #2889 - Follow-up: Adjust Expat 2.7.3 local patches for removal of 3rd patch. (034eeaff) - Issue #2889 - Follow-up: Remove fix for BZ 569229. (493169e2)
26 lines
616 B
Diff
26 lines
616 B
Diff
diff --git a/lib/xmlparse.c b/lib/xmlparse.c
|
|
--- a/lib/xmlparse.c
|
|
+++ b/lib/xmlparse.c
|
|
@@ -3125,12 +3125,20 @@
|
|
}
|
|
#endif /* XML_GE == 1 */
|
|
|
|
-#ifdef MOZILLA_CLIENT /* Report opening tag of mismatched closing tag */
|
|
+#ifdef MOZILLA_CLIENT
|
|
+/* Report opening tag of mismatched closing tag */
|
|
const XML_Char * XMLCALL
|
|
MOZ_XML_GetMismatchedTag(XML_Parser parser)
|
|
{
|
|
return parser->m_mismatch;
|
|
}
|
|
+
|
|
+/* Report whether the parser is currently expanding an entity */
|
|
+XML_Bool XMLCALL
|
|
+MOZ_XML_ProcessingEntityValue(XML_Parser parser)
|
|
+{
|
|
+ return parser->m_openInternalEntities != NULL;
|
|
+}
|
|
#endif
|
|
|
|
XML_Bool XMLCALL
|