mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-06 17:06:45 +02:00
Compare commits
3 Commits
026f653e07
...
41ac7a0b4b
Author | SHA1 | Date | |
---|---|---|---|
|
41ac7a0b4b | ||
|
5fc571b711 | ||
|
acf27d29c6 |
@ -8,6 +8,7 @@ v1.4.1 - YYYY-MM-DD
|
||||
- Fixed the link libraries for the example source code (Issue #86)
|
||||
- Fixed handling of the Info object (Issue #87)
|
||||
- Fixed opening of PDF files less than 1024 bytes in length (Issue #87)
|
||||
- Fixed potential `NULL` dereference when reading (Issue #89)
|
||||
|
||||
|
||||
v1.4.0 - 2024-12-26
|
||||
|
@ -368,7 +368,7 @@ _pdfioFileSeek(pdfio_file_t *pdf, // I - PDF file
|
||||
if (pdf->mode == _PDFIO_MODE_READ)
|
||||
{
|
||||
// Reading, see if we already have the data we need...
|
||||
if (whence != SEEK_END && offset >= pdf->bufpos && offset < (pdf->bufpos + pdf->bufend - pdf->buffer))
|
||||
if (whence != SEEK_END && offset >= pdf->bufpos && pdf->bufend && offset < (pdf->bufpos + pdf->bufend - pdf->buffer))
|
||||
{
|
||||
// Yes, seek within existing buffer...
|
||||
pdf->bufptr = pdf->buffer + (offset - pdf->bufpos);
|
||||
|
Loading…
x
Reference in New Issue
Block a user