[Poppler-bugs] [Bug 28406] poppler crashes under certain pdf file

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Mon Jun 7 05:40:32 PDT 2010


https://bugs.freedesktop.org/show_bug.cgi?id=28406

--- Comment #8 from Albert Astals Cid <tsdgeos at terra.es> 2010-06-07 05:40:33 PDT ---
Your compilator is still dumb, line 805 has

if (newSize >= INT_MAX / (int)sizeof(XRefEntry)) {
  error(-1, "Invalid 'obj' parameters.");
  return gFalse;
}

which means

if (70000128 >= 2147483647 / 32) {
  error(-1, "Invalid 'obj' parameters.");
  return gFalse;
}

which means

if (70000128 >= 67108864) {
  error(-1, "Invalid 'obj' parameters.");
  return gFalse;
}

That is true, you should worry why that is failing.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the Poppler-bugs mailing list