P
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 May 1999 03:04:27 +0000 (03:04 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 May 1999 03:04:27 +0000 (03:04 +0000)
        * getcwd.c (getcwd): If pathname is NULL, then obtain SIZE
        bytes of space using malloc.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27161 138bc75d-0d04-0410-961f-82ee72b054a4

libiberty/getcwd.c

index 06d55c0..47b1c1e 100644 (file)
@@ -14,6 +14,9 @@ DESCRIPTION
        current directory's path doesn't fit in LEN characters, the result
        is NULL and errno is set.
 
+       If pathname is a null pointer, getcwd() will obtain size bytes of
+       space using malloc.
+
 BUGS
        Emulated via the getwd() call, which is reasonable for most
        systems that do not have getcwd().
@@ -48,6 +51,13 @@ getcwd (buf, len)
       errno = ERANGE;
       return 0;
     }
+    if (!buf) {
+       buf = (char*)malloc(len);
+       if (!buf) {
+           errno = ENOMEM;
+          return 0;
+       }
+    }
     strcpy (buf, ourbuf);
   }
   return buf;