| Index: core/src/fxcrt/fx_basic_util.cpp
|
| diff --git a/core/src/fxcrt/fx_basic_util.cpp b/core/src/fxcrt/fx_basic_util.cpp
|
| index 272d43eef78f343e4ce32fbff2d686915452c2a0..be736f1b2137df43977434313b00b3d624e3a05a 100644
|
| --- a/core/src/fxcrt/fx_basic_util.cpp
|
| +++ b/core/src/fxcrt/fx_basic_util.cpp
|
| @@ -353,9 +353,9 @@ void* FX_OpenFolder(FX_LPCWSTR path)
|
| return NULL;
|
| }
|
| #ifdef _FX_WINAPI_PARTITION_DESKTOP_
|
| - pData->m_Handle = FindFirstFileW(CFX_WideString(path) + L"/*.*", &pData->m_FindData);
|
| + pData->m_Handle = FindFirstFileW((CFX_WideString(path) + L"/*.*").c_str(), &pData->m_FindData);
|
| #else
|
| - pData->m_Handle = FindFirstFileExW(CFX_WideString(path) + L"/*.*", FindExInfoStandard, &pData->m_FindData, FindExSearchNameMatch, NULL, 0);
|
| + pData->m_Handle = FindFirstFileExW((CFX_WideString(path) + L"/*.*").c_str(), FindExInfoStandard, &pData->m_FindData, FindExSearchNameMatch, NULL, 0);
|
| #endif
|
| if (pData->m_Handle == INVALID_HANDLE_VALUE) {
|
| delete pData;
|
|
|