27 Feb
2008
27 Feb
'08
1:43 p.m.
Martin Schröder wrote:
2008/2/27, Taco Hoekwater
: Sorry about this, of course it isn't. But I still suspect an endianness issue.
if s > sup_pdf_os_buf_size - pdf_ptr then overflow("PDF object stream buffer", pdf_os_buf_size);
I suspect someone fiddled with --disable-largefile. :-( pdf_ptr is a longinteger, i.e. off_t. s is an integer, sup_pdf_os_buf_size is just a const. Surely s doesn't have to be a longinteger?
perhaps the function is accidentally called with a longinteger argument?