Kaydet (Commit) dcde7d32 authored tarafından Caolán McNamara's avatar Caolán McNamara

no mkdtemp on AIX either

Change-Id: I9103f86a5b8414c9cdf5fd3a2d662725343f0ed8
üst 7df3ec71
...@@ -5996,7 +5996,7 @@ namespace osl_Directory ...@@ -5996,7 +5996,7 @@ namespace osl_Directory
if (tmp_x.lastIndexOf('/') != (tmp_x.getLength() - 1)) if (tmp_x.lastIndexOf('/') != (tmp_x.getLength() - 1))
tmp_x += rtl::OString('/'); tmp_x += rtl::OString('/');
#if !defined(WNT) && !defined(ANDROID) #if !defined(WNT) && !defined(ANDROID) && !defined(AIX)
// FIXME would be nice to create unique dir even on Windows // FIXME would be nice to create unique dir even on Windows
tmp_x += rtl::OString("XXXXXX"); tmp_x += rtl::OString("XXXXXX");
char *out = mkdtemp(const_cast<char*>(tmp_x.getStr())); char *out = mkdtemp(const_cast<char*>(tmp_x.getStr()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment