aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-07-22 20:02:39 +0000
committerDevang Patel <dpatel@apple.com>2008-07-22 20:02:39 +0000
commitce8fdf105c313aa35b93e5a77ae5461e27ddebb0 (patch)
treeb927db02859b819293eae2dcfb5ddfa9fe7bc650 /lib/System/Unix
parent52672b813e0e1741855c5692a84be5bc9ef5869f (diff)
While creating temp. file on disk, if the current filename points to a existing directory then create new temp. file inside the directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Path.inc10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index 1de594b866..a0def8d512 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -746,8 +746,14 @@ Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
// Append an XXXXXX pattern to the end of the file for use with mkstemp,
// mktemp or our own implementation.
char *FNBuffer = (char*) alloca(path.size()+8);
- path.copy(FNBuffer,path.size());
- strcpy(FNBuffer+path.size(), "-XXXXXX");
+ if (isDirectory()) {
+ std::string dirPath = getDirname();
+ strcpy(FNBuffer, dirPath.c_str());
+ strcpy(FNBuffer+dirPath.size(), "XXXXXX");
+ } else {
+ path.copy(FNBuffer,path.size());
+ strcpy(FNBuffer+path.size(), "-XXXXXX");
+ }
#if defined(HAVE_MKSTEMP)
int TempFD;