Remove all uses of PATH_MAX and MAXPATHLEN from PathV2.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Thu, 24 Mar 2011 05:23:40 +0000 (05:23 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Thu, 24 Mar 2011 05:23:40 +0000 (05:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128199 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Unix/PathV2.inc

index 03ff28367e44c5e653f6080e5e89e43aaec714f5..c9267c06b39d147211f856de0ae42114a0d4ccd5 100644 (file)
@@ -93,7 +93,8 @@ namespace sys  {
 namespace fs {
 
 error_code current_path(SmallVectorImpl<char> &result) {
-  result.reserve(MAXPATHLEN);
+  // Reserve an arbitrary amount of space.
+  result.reserve(128);
 
   while (true) {
     if (::getcwd(result.data(), result.capacity()) == 0) {
@@ -417,18 +418,13 @@ rety_open_create:
   }
 
    // Make the path absolute.
-  char real_path_buff[PATH_MAX + 1];
-  if (realpath(RandomPath.c_str(), real_path_buff) == NULL) {
-    int error = errno;
+  if (error_code ec = make_absolute(RandomPath)) {
     ::close(RandomFD);
     ::unlink(RandomPath.c_str());
-    return error_code(error, system_category());
+    return ec;
   }
 
-  result_path.clear();
-  StringRef d(real_path_buff);
-  result_path.append(d.begin(), d.end());
-
+  result_path = RandomPath;
   result_fd = RandomFD;
   return success;
 }