30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
--- a/utils/pdfunite.cc
|
|
+++ b/utils/pdfunite.cc
|
|
@@ -165,7 +165,9 @@ int main (int argc, char *argv[])
|
|
for (i = 1; i < argc - 1; i++) {
|
|
GooString *gfileName = new GooString(argv[i]);
|
|
PDFDoc *doc = new PDFDoc(gfileName, nullptr, nullptr, nullptr);
|
|
- if (doc->isOk() && !doc->isEncrypted()) {
|
|
+ if (doc->isOk() && !doc->isEncrypted() &&
|
|
+ (doc->getCatalog()->getPageRef(1) || gTrue) &&
|
|
+ doc->getXRef()->getCatalog().isDict()) {
|
|
docs.push_back(doc);
|
|
if (doc->getPDFMajorVersion() > majorVersion) {
|
|
majorVersion = doc->getPDFMajorVersion();
|
|
@@ -176,8 +177,13 @@ int main (int argc, char *argv[])
|
|
}
|
|
}
|
|
} else if (doc->isOk()) {
|
|
- error(errUnimplemented, -1, "Could not merge encrypted files ('{0:s}')", argv[i]);
|
|
- return -1;
|
|
+ if (doc->isEncrypted()) {
|
|
+ error(errUnimplemented, -1, "Could not merge encrypted files ('{0:s}')", argv[i]);
|
|
+ return -1;
|
|
+ } else if (!doc->getXRef()->getCatalog().isDict()) {
|
|
+ error(errSyntaxError, -1, "XRef's Catalog is not a dictionary ('{0:s}')", argv[i]);
|
|
+ return -1;
|
|
+ }
|
|
} else {
|
|
error(errSyntaxError, -1, "Could not merge damaged documents ('{0:s}')", argv[i]);
|
|
return -1;
|