| Index: core/src/fxcrt/fx_basic_wstring.cpp
|
| diff --git a/core/src/fxcrt/fx_basic_wstring.cpp b/core/src/fxcrt/fx_basic_wstring.cpp
|
| index 2e92370461b97c75f241e054f46ac31f39dda3b6..78746e383cf9061405273a38942cc6b944bf94d1 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;
|
|
|