From 9dd088033537c071725b9a61fd5b519d65ea9f13 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 13 Oct 2014 13:16:32 -0700 Subject: Fix off-by-one in sizing of m_EmbeddedToUnicodes. BUG=421196 R=bo_xu@foxitsoftware.com Review URL: https://codereview.chromium.org/656463006 --- core/src/fpdfapi/fpdf_font/font_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/fpdfapi/fpdf_font/font_int.h') diff --git a/core/src/fpdfapi/fpdf_font/font_int.h b/core/src/fpdfapi/fpdf_font/font_int.h index b151d78b51..3ce9664ceb 100644 --- a/core/src/fpdfapi/fpdf_font/font_int.h +++ b/core/src/fpdfapi/fpdf_font/font_int.h @@ -39,11 +39,11 @@ public: struct { const struct FXCMAP_CMap* m_pMapList; int m_Count; - } m_EmbeddedCharsets[5]; + } m_EmbeddedCharsets[NUMBER_OF_CIDSETS]; struct { const FX_WORD* m_pMap; int m_Count; - } m_EmbeddedToUnicodes[5]; + } m_EmbeddedToUnicodes[NUMBER_OF_CIDSETS]; FX_LPBYTE m_pContrastRamps; }; struct _CMap_CodeRange { -- cgit v1.2.3