| Index: core/src/fxcrt/fx_basic_buffer.cpp
|
| diff --git a/core/src/fxcrt/fx_basic_buffer.cpp b/core/src/fxcrt/fx_basic_buffer.cpp
|
| index b208142d927a107da0fa977b470c5d1356f9fdef..bb8466debeb3e64a8575ecbecc2979710dbe9563 100644
|
| --- a/core/src/fxcrt/fx_basic_buffer.cpp
|
| +++ b/core/src/fxcrt/fx_basic_buffer.cpp
|
| @@ -371,7 +371,7 @@ CFX_ArchiveLoader& CFX_ArchiveLoader::operator >> (CFX_WideString& str)
|
| {
|
| CFX_ByteString encoded;
|
| operator >> (encoded);
|
| - str = CFX_WideString::FromUTF16LE((const unsigned short*)(FX_LPCSTR)encoded, encoded.GetLength());
|
| + str = CFX_WideString::FromUTF16LE((const unsigned short*)encoded.c_str(), encoded.GetLength());
|
| return *this;
|
| }
|
| FX_BOOL CFX_ArchiveLoader::Read(void* pBuf, FX_DWORD dwSize)
|
|
|