summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 190932d8..68a1e772 100644
--- a/stream.c
+++ b/stream.c
@@ -2424,7 +2424,8 @@ val getcwd_wrap(void)
for (;;) {
char *u8buf = (char *) chk_malloc(guess);
- if (getcwd(u8buf, 256) < 0) {
+
+ if (getcwd(u8buf, guess) == 0) {
free(u8buf);
if (errno != ERANGE) {
uw_throwf(file_error_s, lit("getcwd: ~a/~s"),