Skip to content

Commit

Permalink
Fix another build issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Mar 20, 2023
1 parent 97d4955 commit 35c674b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Changes in PDFio
v1.1.1 (March 20, 2023)
-----------------------

- CVE-2023-NNNNN: Fixed a potential denial-of-service with corrupt PDF files.
- Fixed a build issue.
- CVE-2023-28428: Fixed a potential denial-of-service with corrupt PDF files.
- Fixed a few build issues.


v1.1.0 (February 6, 2023)
Expand Down
2 changes: 1 addition & 1 deletion testpdfio.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ do_test_file(const char *filename, // I - PDF filename

filter = pdfioDictGetName(dict, "Filter");

if ((st = pdfioObjOpenStream(obj, (filter && !strcmp(filter, "FlateDecode")) ? PDFIO_FILTER_FLATE : PDFIO_FILTER_NONE)) == NULL)
if ((st = pdfioObjOpenStream(obj, filter && !strcmp(filter, "FlateDecode"))) == NULL)
{
_pdfioValueDebug(&obj->value, stdout);
putchar('\n');
Expand Down

0 comments on commit 35c674b

Please sign in to comment.