Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Catalog.cc
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1999-08-06 00:14:27 (GMT)
committer Arturo Espinosa <unammx@src.gnome.org>1999-08-06 00:14:27 (GMT)
commit50e9d31c05e9ca11ad43cc570556094782c1b956 (patch)
treee8d30241d1f97d7a52ad4486089a74e55160ad78 /pdf/xpdf/Catalog.cc
parentbd7dce23fec36adeb1713c164d594bbc0436b346 (diff)
Painful merge.
Painful merge. I merged the latest release into the CVS. This version supports the regular xpdf or gpdf if the GNOME libraries are found. Miguel.
Diffstat (limited to 'pdf/xpdf/Catalog.cc')
-rw-r--r--pdf/xpdf/Catalog.cc15
1 files changed, 14 insertions, 1 deletions
diff --git a/pdf/xpdf/Catalog.cc b/pdf/xpdf/Catalog.cc
index fded0be..ea968ee 100644
--- a/pdf/xpdf/Catalog.cc
+++ b/pdf/xpdf/Catalog.cc
@@ -26,7 +26,7 @@
Catalog::Catalog(Object *catDict) {
Object pagesDict;
- Object obj;
+ Object obj, obj2;
int i;
ok = gTrue;
@@ -74,6 +74,16 @@ Catalog::Catalog(Object *catDict) {
nameTree.initNull();
obj.free();
+ // read base URI
+ baseURI = NULL;
+ if (catDict->dictLookup("URI", &obj)->isDict()) {
+ if (obj.dictLookup("Base", &obj2)->isString()) {
+ baseURI = obj2.getString()->copy();
+ }
+ obj2.free();
+ }
+ obj.free();
+
return;
err3:
@@ -99,6 +109,9 @@ Catalog::~Catalog() {
}
dests.free();
nameTree.free();
+ if (baseURI) {
+ delete baseURI;
+ }
}
int Catalog::readPageTree(Dict *pagesDict, PageAttrs *attrs, int start) {