diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 573724075..7658aebed 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -423,8 +423,8 @@ static const struct built_in_command bltins[] = { | |||
423 | static const char *set_cwd(void) | 423 | static const char *set_cwd(void) |
424 | { | 424 | { |
425 | if (cwd == bb_msg_unknown) | 425 | if (cwd == bb_msg_unknown) |
426 | cwd = NULL; /* xgetcwd(arg) called free(arg) */ | 426 | cwd = NULL; /* xrealloc_getcwd_or_warn(arg) called free(arg) */ |
427 | cwd = xgetcwd((char *)cwd); | 427 | cwd = xrealloc_getcwd_or_warn((char *)cwd); |
428 | if (!cwd) | 428 | if (!cwd) |
429 | cwd = bb_msg_unknown; | 429 | cwd = bb_msg_unknown; |
430 | return cwd; | 430 | return cwd; |