I have a lot of PDF files that were edited by Adobe Acrobat for which pdfinfo reports a warning: Syntax Error: Marked object is wrong type (boolean) I believe I have located the problem: This warning is emitted when the Marked key in the MarkInfo entry in the document catalog has a value of "false". That *should* be an allowed value, but pdfinfo emits the warning due to the following code in Catalog.cc (within getMarkInfo): if (catDict.isDict()) { Object markInfoDict = catDict.dictLookup("MarkInfo"); if (markInfoDict.isDict()) { Object value = markInfoDict.dictLookup("Marked"); if (value.isBool() && value.getBool()) markInfo |= markInfoMarked; else if (!value.isNull()) error(errSyntaxError, -1, "Marked object is wrong type ({0:s})", value.getTypeName()); There is no problem when the Marked key has a value of true, or if it is omitted altogether. This issue appears in poppler 0.66, and as far back as poppler 0.39.
Fixed, thanks for the heads up
Great, thanks! Did this make it into poppler 0.69, or would it be in a later release? In general, is there a way from the bug entry here to see which release contains a given bugfix?
There's no 0.69 yet. It did end in 0.68, you can check the commit log https://cgit.freedesktop.org/poppler/poppler/log/
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.