3587f3
From fada09a2ccc11a3a1d308e810f1336d8df6011fd Mon Sep 17 00:00:00 2001
3587f3
From: Albert Astals Cid <aacid@kde.org>
3587f3
Date: Mon, 18 Mar 2019 00:50:00 +0100
3587f3
Subject: pdfunite: Fix stack overflow on broken file
3587f3
3587f3
Fixes issue #741
3587f3
3587f3
diff --git a/poppler/PDFDoc.cc b/poppler/PDFDoc.cc
3587f3
index 26842f84..ab4abcad 100644
3587f3
--- a/poppler/PDFDoc.cc
3587f3
+++ b/poppler/PDFDoc.cc
3587f3
@@ -1703,7 +1703,7 @@ void PDFDoc::markObject (Object* obj, XRef *xRef, XRef *countRef, unsigned int n
3587f3
       array = obj->getArray();
3587f3
       for (int i=0; i<array->getLength(); i++) {
3587f3
         Object obj1 = array->getNF(i);
3587f3
-        markObject(&obj1, xRef, countRef, numOffset, oldRefNum, newRefNum);
3587f3
+        markObject(&obj1, xRef, countRef, numOffset, oldRefNum, newRefNum, alreadyMarkedDicts);
3587f3
       }
3587f3
       break;
3587f3
     case objDict: