Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/pdf_io/pdf_io/dpx-cidtype2.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ validate_name (char *fontname, int len)
*/

#define WIN_UCS_INDEX_MAX 1
#define KNOWN_ENCODINGS_MAX 9
#define KNOWN_ENCODINGS_MAX 10
static struct
{
unsigned short platform;
Expand All @@ -164,6 +164,7 @@ static struct
{TT_MAC, TT_MAC_TRADITIONAL_CHINESE, {"B5pc", NULL}},
{TT_MAC, TT_MAC_SIMPLIFIED_CHINESE, {"GBpc-EUC", NULL}},
{TT_MAC, TT_MAC_KOREAN, {"KSCpc-EUC", NULL}},
{0, 4, {"UCSms-UCS4", "UCSms-UCS2", "UCS4", "UCS2", NULL}},
{0, 0, {NULL}}
};

Expand Down
1 change: 1 addition & 0 deletions crates/pdf_io/pdf_io/dpx-tt_cmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1047,6 +1047,7 @@ typedef struct {
static cmap_plat_enc_rec cmap_plat_encs[] = {
{ 3, 10 },
{ 0, 3 },
{ 0, 4 },
{ 0, 0 },
{ 3, 1 },
{ 0, 1 }
Expand Down