summaryrefslogtreecommitdiff
path: root/gl/lib/getcwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/lib/getcwd.c')
-rw-r--r--gl/lib/getcwd.c38
1 files changed, 35 insertions, 3 deletions
diff --git a/gl/lib/getcwd.c b/gl/lib/getcwd.c
index 41eedb70..bf878092 100644
--- a/gl/lib/getcwd.c
+++ b/gl/lib/getcwd.c
@@ -79,6 +79,10 @@
# define MATCHING_INO(dp, ino) true
#endif
+#if HAVE_MSVC_INVALID_PARAMETER_HANDLER
+# include "msvc-inval.h"
+#endif
+
#if !_LIBC
# define __getcwd rpl_getcwd
# define __lstat lstat
@@ -100,6 +104,34 @@
# undef closedir
#endif
+#ifdef _MSC_VER
+# if HAVE_MSVC_INVALID_PARAMETER_HANDLER
+static char *
+getcwd_nothrow (char *buf, size_t size)
+{
+ char *result;
+
+ TRY_MSVC_INVAL
+ {
+ result = _getcwd (buf, size);
+ }
+ CATCH_MSVC_INVAL
+ {
+ result = NULL;
+ errno = ERANGE;
+ }
+ DONE_MSVC_INVAL;
+
+ return result;
+}
+# else
+# define getcwd_nothrow _getcwd
+# endif
+# define getcwd_system getcwd_nothrow
+#else
+# define getcwd_system getcwd
+#endif
+
/* Get the name of the current working directory, and put it in SIZE
bytes of BUF. Returns NULL if the directory couldn't be determined or
SIZE was too small. If successful, returns BUF. In GNU, if BUF is
@@ -155,7 +187,7 @@ __getcwd (char *buf, size_t size)
this wrong result with errno = 0. */
# undef getcwd
- dir = getcwd (buf, size);
+ dir = getcwd_system (buf, size);
if (dir || (size && errno == ERANGE))
return dir;
@@ -166,7 +198,7 @@ __getcwd (char *buf, size_t size)
if (errno == EINVAL && buf == NULL && size == 0)
{
char big_buffer[BIG_FILE_NAME_LENGTH + 1];
- dir = getcwd (big_buffer, sizeof big_buffer);
+ dir = getcwd_system (big_buffer, sizeof big_buffer);
if (dir)
return strdup (dir);
}
@@ -411,7 +443,7 @@ __getcwd (char *buf, size_t size)
if (size == 0)
/* Ensure that the buffer is only as large as necessary. */
- buf = realloc (dir, used);
+ buf = (used < allocated ? realloc (dir, used) : dir);
if (buf == NULL)
/* Either buf was NULL all along, or 'realloc' failed but