summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-04-05 14:59:37 +0000
committerGerd Moellmann <gerd@gnu.org>2001-04-05 14:59:37 +0000
commit18b6bc735c95b65b0ca146f9f707f6c5e0b6e08d (patch)
treedda33d492f4f6c3410de3a9a443c02d4289f62ec
parenta55e4e68ee2f62bb2715483cdb4c355d1e8acdca (diff)
downloademacs-18b6bc735c95b65b0ca146f9f707f6c5e0b6e08d.tar.gz
(getwd) [!HAVE_GETWD]: Unblock input before returning.
-rw-r--r--src/sysdep.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index e3a1821a8b3..1be3c62c1da 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3349,7 +3349,10 @@ getwd (pathname)
BLOCK_INPUT; /* getcwd uses malloc */
spath = npath = getcwd ((char *) 0, MAXPATHLEN);
if (spath == 0)
- return spath;
+ {
+ UNBLOCK_INPUT;
+ return spath;
+ }
/* On Altos 3068, getcwd can return @hostname/dir, so discard
up to first slash. Should be harmless on other systems. */
while (*npath && *npath != '/')