mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-05 16:36:44 +02:00
Allow empty name tokens (Issue #116)
This commit is contained in:
parent
3befcf2fd5
commit
2874022aa4
@ -1,6 +1,13 @@
|
||||
Changes in PDFio
|
||||
================
|
||||
|
||||
|
||||
v1.5.2 - YYYY-MM-DD
|
||||
-------------------
|
||||
|
||||
- Fixed support for empty name values (Issue #116)
|
||||
|
||||
|
||||
v1.5.1 - 2025-03-28
|
||||
-------------------
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
//
|
||||
// PDF token parsing functions for PDFio.
|
||||
//
|
||||
// Copyright © 2021-2023 by Michael R Sweet.
|
||||
// Copyright © 2021-2025 by Michael R Sweet.
|
||||
//
|
||||
// Licensed under Apache License v2.0. See the file "LICENSE" for more
|
||||
// information.
|
||||
@ -528,13 +528,6 @@ _pdfioTokenRead(_pdfio_token_t *tb, // I - Token buffer/stack
|
||||
return (false);
|
||||
}
|
||||
}
|
||||
|
||||
if (bufptr == (buffer + 1))
|
||||
{
|
||||
_pdfioFileError(tb->pdf, "Empty name.");
|
||||
*bufptr = '\0';
|
||||
return (false);
|
||||
}
|
||||
break;
|
||||
|
||||
case '<' : // Potential hex string
|
||||
|
Loading…
x
Reference in New Issue
Block a user