• Pushing inherited objects to pages and getting all pages were both
    prone to stack overflow infinite loops if there were loops in the
    Pages dictionary. There is a general weakness in the code in that any
    part of the code that traverses the Pages structure would be prone to
    this and would have to implement its own loop detection. A more robust
    fix may provide some general method for handling the Pages structure,
    but it's probably not worth doing.
    
    Note: addition of *Internal2 private functions was done rather than
    changing signatures of existing methods to avoid breaking
    compatibility.
    Jay Berkenbilt authored
     
    Browse Dir »
  • Converting a password to an encryption key is supposed to copy up to a
    certain number of bytes from a digest. Make sure never to copy more
    than the size of the digest.
    Jay Berkenbilt authored
     
    Browse Dir »
  • When checking two objects preceding R while parsing, ensure that the
    objects are direct. This avoids stuff like 1 0 obj containing 1 0 R 0 R
    from causing an infinite loop in object resolution.
    Jay Berkenbilt authored
     
    Browse Dir »

  • Original reported here:
    https://bugs.launchpad.net/ubuntu/+source/qpdf/+bug/1397413
    
    The PDF specification says that the /Type key for nodes in the pages
    dictionary (both /Page and /Pages) is required, but some PDF files
    omit them. Use the presence of other keys to determine the type of
    pages tree node this is if the type key is not found.
    Jay Berkenbilt authored
     
    Browse Dir »