| Index: core/fxcrt/fx_basic_util.cpp
|
| diff --git a/core/fxcrt/fx_basic_util.cpp b/core/fxcrt/fx_basic_util.cpp
|
| index 4374dec779275b600178e1dbc70248212a3a1856..1cc37bee1ff73de2ab4e48879e8fb914171585eb 100644
|
| --- a/core/fxcrt/fx_basic_util.cpp
|
| +++ b/core/fxcrt/fx_basic_util.cpp
|
| @@ -242,7 +242,7 @@ void* FX_OpenFolder(const FX_WCHAR* path) {
|
| pData->m_bEnd = FALSE;
|
| return pData;
|
| #else
|
| - DIR* dir = opendir(CFX_ByteString::FromUnicode(path));
|
| + DIR* dir = opendir(CFX_ByteString::FromUnicode(path).c_str());
|
| return dir;
|
| #endif
|
| }
|
|
|