Compare commits

..

No commits in common. "2ecb9cfb2d2498ecd61520af6f773f219f23f228" and "2ea99597cc2c79521af2399f63e91ef0604ec52f" have entirely different histories.

3 changed files with 1 additions and 4 deletions

View File

@ -10,8 +10,6 @@ v1.4.0 - YYYY-MM-DD
- Added new `pdfioFileCreateNameObj` and `pdfioObjGetName` APIs for creating and - Added new `pdfioFileCreateNameObj` and `pdfioObjGetName` APIs for creating and
getting name object values (Issue #76) getting name object values (Issue #76)
- Updated documentation (Issue #78) - Updated documentation (Issue #78)
- Fixed reading of PDF files whose trailer is missing a newline (Issue #80)
- Fixed builds with some versions of VC++ (Issue #81)
v1.3.2 - 2024-08-15 v1.3.2 - 2024-08-15

View File

@ -1977,7 +1977,7 @@ load_xref(
{ {
PDFIO_DEBUG("load_xref: '%s' at offset %lu\n", line, (unsigned long)trailer_offset); PDFIO_DEBUG("load_xref: '%s' at offset %lu\n", line, (unsigned long)trailer_offset);
if (!strncmp(line, "trailer", 7) && (!line[7] || isspace(line[7] & 255) || line[7] == '<')) if (!strncmp(line, "trailer", 7) && (!line[7] || isspace(line[7] & 255)))
{ {
if (line[7]) if (line[7])
{ {

1
ttf.h
View File

@ -11,7 +11,6 @@
#ifndef TTF_H #ifndef TTF_H
# define TTF_H # define TTF_H
# include <stddef.h>
# include <stdbool.h> # include <stdbool.h>
# include <sys/types.h> # include <sys/types.h>
# ifdef __cplusplus # ifdef __cplusplus