diff options
author | Lei Zhang <thestig@chromium.org> | 2015-02-27 19:43:10 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-02-27 19:43:10 -0800 |
commit | cee0ed19cf7543c2b19fe26d61ee9aaadc75893d (patch) | |
tree | c6238c313e416c7f38b351f5105930eccfc760dd | |
parent | 2b0ed94ac3a200d0ca39de07d845928509875221 (diff) | |
download | pdfium-cee0ed19cf7543c2b19fe26d61ee9aaadc75893d.tar.xz |
Merge to XFA: Fix an array size mismatch.
BUG=446057
Original Author: sebmarchand@chromium.org
Original CL: https://codereview.chromium.org/837523002/
Review URL: https://codereview.chromium.org/812843004
(cherry picked from commit f96404951bc1505887e2567088b59206316c9297)
Review URL: https://codereview.chromium.org/966003002
-rw-r--r-- | core/src/fpdftext/unicodenormalization.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/fpdftext/unicodenormalization.cpp b/core/src/fpdftext/unicodenormalization.cpp index 1d36b8576a..c36cad775f 100644 --- a/core/src/fpdftext/unicodenormalization.cpp +++ b/core/src/fpdftext/unicodenormalization.cpp @@ -1,13 +1,13 @@ // Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. - + // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "../../include/fpdftext/fpdf_text.h" extern const FX_WCHAR g_UnicodeData_Normalization[65536]; extern const FX_WCHAR g_UnicodeData_Normalization_Map1[5376]; -extern const FX_WCHAR g_UnicodeData_Normalization_Map2[1734]; +extern const FX_WCHAR g_UnicodeData_Normalization_Map2[1724]; extern const FX_WCHAR g_UnicodeData_Normalization_Map3[1164]; extern const FX_WCHAR g_UnicodeData_Normalization_Map4[488]; FX_LPCWSTR g_UnicodeData_Normalization_Maps[5] = { |