summaryrefslogtreecommitdiff
path: root/source/xps/xps-doc.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-04-16 16:10:57 +0200
committerTor Andersson <tor.andersson@artifex.com>2014-04-23 14:31:33 +0200
commit648ae8838f35f45e57b9a41f41f30a3b6ade3037 (patch)
treeb3139c09ed8b9e53e2fa2cbfabb215c7daf0cbb9 /source/xps/xps-doc.c
parent959f70ff9e15d77b043bf49d8065dafbf0757903 (diff)
downloadmupdf-648ae8838f35f45e57b9a41f41f30a3b6ade3037.tar.xz
Fix bug 693580 by skipping xml tag namespace prefixes.
fts_5904.xps and fts_5905.xps use namespace prefixes. Work around that by ignoring the namespace prefix for tag names. A more robust solution would be to expand or record the tag and attribute namespaces in the fz_xml node structure, but that's a overkill for our current needs.
Diffstat (limited to 'source/xps/xps-doc.c')
-rw-r--r--source/xps/xps-doc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/xps/xps-doc.c b/source/xps/xps-doc.c
index af5bfe5a..5aa2604c 100644
--- a/source/xps/xps-doc.c
+++ b/source/xps/xps-doc.c
@@ -453,7 +453,7 @@ xps_load_fixed_page(xps_document *doc, xps_page *page)
if (!root)
fz_throw(doc->ctx, FZ_ERROR_GENERIC, "FixedPage missing root element");
- if (!strcmp(fz_xml_tag(root), "mc:AlternateContent"))
+ if (!strcmp(fz_xml_tag(root), "AlternateContent"))
{
fz_xml *node = xps_lookup_alternate_content(root);
if (!node)