summaryrefslogtreecommitdiff
path: root/shell/lash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 0af6691..22e3c77 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1507,8 +1507,8 @@ static int busy_loop(FILE * input)
#ifdef BB_FEATURE_CLEAN_UP
void free_memory(void)
{
- if (cwd) {
- free(cwd);
+ if (cwd && cwd!=unknown) {
+ free((char*)cwd);
}
if (local_pending_command)
free(local_pending_command);