mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: #825 Remove all warning when compiling Ryzom
This commit is contained in:
parent
f63cf62f19
commit
0269f2f46d
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue