• QPDF::read_xrefTable ignores type 0 entries for objects in a section if an
    associates XRefStm has an entry for the same object.
    
    The spec states:
    
    When the conforming reader searches for an object, if an entry is not
    found in any given standard cross-reference section, the search shall
    proceed to a cross-reference stream specified by the XRefStm entry
    before looking in the previous cross-reference section,
    
    If a deleted entry is found in a section, the XRefStm is not searched
    according to the standard.
    m-holger authored
     
    Browse Code »







  • libtests: include cstdint for GCC 15
    Jay Berkenbilt authored
     
    Browse Code »
  • GCC 15 starts to no longer include this by default, requiring it to be
    explicitly included.
    
    Error message:
    libtests/cxx11.cc:75:16: error: ‘uint8_t’ was not declared in this scope
       75 |     check_size<uint8_t>(1, false);
          |                ^~~~~~~
    libtests/cxx11.cc:10:1: note: ‘uint8_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
        9 | #include <regex>
      +++ |+#include <cstdint>
       10 | #include <type_traits>
    
    Signed-off-by: Christopher Fore <csfore@posteo.net>
    Christopher Fore authored
     
    Browse Code »