<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - pdfinfo/pdffonts cannot process >2GB files"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=44085#c34">Comment # 34</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - pdfinfo/pdffonts cannot process >2GB files"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=44085">bug 44085</a>
              from <span class="vcard"><a class="email" href="mailto:tsdgeos@terra.es" title="Albert Astals Cid <tsdgeos@terra.es>"> <span class="fn">Albert Astals Cid</span></a>
</span></b>
        <pre>Seems that this breaks the lexer somehow, when running the ./check_lexer test
in qt4, that does not compile, needs this patch

diff --git a/qt4/tests/check_lexer.cpp b/qt4/tests/check_lexer.cpp
index 1ae849f..1835d93 100644
--- a/qt4/tests/check_lexer.cpp
+++ b/qt4/tests/check_lexer.cpp
@@ -46,8 +46,8 @@ void TestLexer::testNumbers()
     obj.free();

     lexer->getObj(&obj);
-    QCOMPARE(obj.getType(), objUint);
-    QCOMPARE(obj.getUint(), 2147483648u);
+    QCOMPARE(obj.getType(), objInt64);
+    QCOMPARE(obj.getInt64(), 2147483648ll);
     obj.free();

     lexer->getObj(&obj);

The test fails. It seems that 
-2147483647-1
is not detected as a objInt anymore but as a objInt64.

Could you have a look?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>