summaryrefslogtreecommitdiff
path: root/tools/llvm-ar
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-08 19:59:07 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-08 19:59:07 +0000
commit184e67e208e2f54a3a89c262a25e45e819f58a61 (patch)
tree6fae63b3d387d17b40d12cb7fa711a35a0fc0d95 /tools/llvm-ar
parent51047859ed6b365c0951a3eaac3550a37580f2d2 (diff)
downloadllvm-184e67e208e2f54a3a89c262a25e45e819f58a61.tar.gz
llvm-184e67e208e2f54a3a89c262a25e45e819f58a61.tar.bz2
llvm-184e67e208e2f54a3a89c262a25e45e819f58a61.tar.xz
Don't rely on destructed local storage. Thanks, Chris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ar')
-rw-r--r--tools/llvm-ar/llvm-ar.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp
index fc40f78862..7f6afc6bee 100644
--- a/tools/llvm-ar/llvm-ar.cpp
+++ b/tools/llvm-ar/llvm-ar.cpp
@@ -281,8 +281,8 @@ recurseDirectories(const sys::Path& path,
for (std::set<sys::Path>::iterator I = content.begin(), E = content.end();
I != E; ++I) {
// Make sure it exists and is a directory
- const sys::FileStatus *Status =
- sys::PathWithStatus(*I).getFileStatus(false, ErrMsg);
+ sys::PathWithStatus PwS(*I);
+ const sys::FileStatus *Status = PwS.getFileStatus(false, ErrMsg);
if (!Status)
return true;
if (Status->isDir) {
@@ -310,8 +310,8 @@ bool buildPaths(bool checkExistence, std::string* ErrMsg) {
if (!aPath.exists())
throw std::string("File does not exist: ") + Members[i];
std::string Err;
- const sys::FileStatus *si =
- sys::PathWithStatus(aPath).getFileStatus(false, &Err);
+ sys::PathWithStatus PwS(aPath);
+ const sys::FileStatus *si = PwS.getFileStatus(false, &Err);
if (!si)
throw Err;
if (si->isDir) {
@@ -647,8 +647,8 @@ doReplaceOrInsert(std::string* ErrMsg) {
if (found != remaining.end()) {
std::string Err;
- const sys::FileStatus *si =
- sys::PathWithStatus(*found).getFileStatus(false, &Err);
+ sys::PathWithStatus PwS(*found);
+ const sys::FileStatus *si = PwS.getFileStatus(false, &Err);
if (!si)
return true;
if (si->isDir) {