Bug 107430 - spurious warning thrown by pdfinfo when Marked=false in MarkInfo
Summary: spurious warning thrown by pdfinfo when Marked=false in MarkInfo
Status: RESOLVED FIXED
Alias: None
Product: poppler
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: Other Linux (All)
: medium normal
Assignee: poppler-bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-07-30 21:37 UTC by JeffL
Modified: 2018-08-28 20:53 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments

Description JeffL 2018-07-30 21:37:00 UTC
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.
Comment 1 Albert Astals Cid 2018-08-19 17:53:49 UTC
Fixed, thanks for the heads up
Comment 2 JeffL 2018-08-27 22:05:50 UTC
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?
Comment 3 Albert Astals Cid 2018-08-28 20:53:18 UTC
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.