diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-04-23 17:53:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-23 17:53:17 +0000 |
commit | 9f71afb882a9d1294f8a4392b8553e2c285f51c7 (patch) | |
tree | e46a124f286e5985d8e9c8a9a5e5d9e708f78910 /core | |
parent | 132c38e7bdd0bdd1aa526b35c7bcb79c286fb061 (diff) | |
download | pdfium-9f71afb882a9d1294f8a4392b8553e2c285f51c7.tar.xz |
Provide double-byte terminator in Windows font variant name.
When parsing UTF16-LE, the default trailing "\0" from a single-byte
character literal isn't suffucient.
Bug: 835184
Change-Id: Ie7db53262adbec0ebccb5d0b22752b8c9f5e6229
Reviewed-on: https://pdfium-review.googlesource.com/31191
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxge/win32/fx_win32_device.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxge/win32/fx_win32_device.cpp b/core/fxge/win32/fx_win32_device.cpp index 337f9643d1..4047866412 100644 --- a/core/fxge/win32/fx_win32_device.cpp +++ b/core/fxge/win32/fx_win32_device.cpp @@ -38,9 +38,9 @@ namespace { const struct { const char* m_pFaceName; - const char* m_pVariantName; + const char* m_pVariantName; // Note: UTF16-LE terminator required. } g_VariantNames[] = { - {"DFKai-SB", "\x19\x6A\x77\x69\xD4\x9A"}, + {"DFKai-SB", "\x19\x6A\x77\x69\xD4\x9A\x00\x00"}, }; const struct { |