summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-12-14 16:02:19 -0800
committerLei Zhang <thestig@chromium.org>2015-12-14 16:02:19 -0800
commita65eca4a589f8381c5486899682d8404551a2c7a (patch)
treea9031fd675912bcd4f2944f04b3b83a17bb400b8
parent1956a174020686f91cd3b34294e91f4560fe45aa (diff)
downloadpdfium-a65eca4a589f8381c5486899682d8404551a2c7a.tar.xz
Fix failures after removing FX_BSTRC.
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1528743002 .
-rw-r--r--core/src/fxcrt/fx_basic_wstring.cpp2
-rw-r--r--core/src/fxcrt/fx_basic_wstring_unittest.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/core/src/fxcrt/fx_basic_wstring.cpp b/core/src/fxcrt/fx_basic_wstring.cpp
index 2e92370461..78746e383c 100644
--- a/core/src/fxcrt/fx_basic_wstring.cpp
+++ b/core/src/fxcrt/fx_basic_wstring.cpp
@@ -288,7 +288,7 @@ CFX_ByteString CFX_WideString::UTF8Encode() const {
}
CFX_ByteString CFX_WideString::UTF16LE_Encode() const {
if (m_pData == NULL) {
- return CFX_ByteString("\0\0");
+ return CFX_ByteString("\0\0", 2);
}
int len = m_pData->m_nDataLength;
CFX_ByteString result;
diff --git a/core/src/fxcrt/fx_basic_wstring_unittest.cpp b/core/src/fxcrt/fx_basic_wstring_unittest.cpp
index ad9bcf6b7f..64d694c436 100644
--- a/core/src/fxcrt/fx_basic_wstring_unittest.cpp
+++ b/core/src/fxcrt/fx_basic_wstring_unittest.cpp
@@ -281,12 +281,12 @@ TEST(fxcrt, WideStringUTF16LE_Encode) {
CFX_WideString ws;
CFX_ByteString bs;
} utf16le_encode_cases[] = {
- {L"", CFX_ByteString("\0\0")},
- {L"abc", CFX_ByteString("a\0b\0c\0\0\0")},
- {L"abcdef", CFX_ByteString("a\0b\0c\0d\0e\0f\0\0\0")},
- {L"abc\0def", CFX_ByteString("a\0b\0c\0\0\0")},
- {L"\xaabb\xccdd", CFX_ByteString("\xbb\xaa\xdd\xcc\0\0")},
- {L"\x3132\x6162", CFX_ByteString("\x32\x31\x62\x61\0\0")},
+ {L"", CFX_ByteString("\0\0", 2)},
+ {L"abc", CFX_ByteString("a\0b\0c\0\0\0", 8)},
+ {L"abcdef", CFX_ByteString("a\0b\0c\0d\0e\0f\0\0\0", 14)},
+ {L"abc\0def", CFX_ByteString("a\0b\0c\0\0\0", 8)},
+ {L"\xaabb\xccdd", CFX_ByteString("\xbb\xaa\xdd\xcc\0\0", 6)},
+ {L"\x3132\x6162", CFX_ByteString("\x32\x31\x62\x61\0\0", 6)},
};
for (size_t i = 0; i < FX_ArraySize(utf16le_encode_cases); ++i) {