Changed: #825 Remove all warning when compiling Ryzom

This commit is contained in:
kervala 2010-10-25 09:47:37 +02:00
parent f63cf62f19
commit 0269f2f46d

View file

@ -1727,16 +1727,16 @@ std::string CFileContainer::getTemporaryDirectory()
static std::string path;
if (path.empty())
{
char *tempDir = getenv("TEMP");
std::string tempDir = getenv("TEMP");
if (tempDir == NULL)
if (tempDir.empty())
tempDir = getenv("TMP");
#ifdef NL_OS_UNIX
if (tempDir == NULL)
if (tempDir.empty())
tempDir = "/tmp";
#else
if (tempDir == NULL)
if (tempDir.empty())
tempDir = ".";
#endif