This commit is contained in:
Vincent Richard 2014-04-21 20:13:48 +02:00
commit ed62ed39bb
2 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ public:
if (stricmp(s8_Name, "EUC-JP") == 0) return 20932;
if (stricmp(s8_Name, "euc-kr") == 0) return 51949;
if (stricmp(s8_Name, "GB18030") == 0) return 54936;
if (stricmp(s8_Name, "GBK") == 0) return 54936;
if (stricmp(s8_Name, "gb2312") == 0) return 936;
if (stricmp(s8_Name, "hz-gb-2312") == 0) return 52936;
if (stricmp(s8_Name, "IBM00858") == 0) return 858;

View File

@ -352,7 +352,7 @@ void windowsFile::createDirectoryImpl(const vmime::utility::file::path& fullPath
{
const vmime::string nativePath = windowsFileSystemFactory::pathToStringImpl(path);
windowsFile tmp(fullPath);
windowsFile tmp(path);
if (tmp.isDirectory())
return;