Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-01-05 05:53:11 +0300
committerMatt Kraai <kraai@debian.org>2001-01-05 05:53:11 +0300
commitdefcd5e75eec72aa31e9bdbd9ac854832318f82f (patch)
treeef1e9912dd104fc6b2b8238431aad6a065d56c9c /sh.c
parent6c6ea6cba2aee7b116dc3d5a64f511fb97468cd1 (diff)
Fix a segfault by only constructing the prompt when we need to. If we don't
do this we will segfault processing /etc/.profile since cwd isn't yet set.
Diffstat (limited to 'sh.c')
-rw-r--r--sh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh.c b/sh.c
index dd1d3aa5c..3d54b439e 100644
--- a/sh.c
+++ b/sh.c
@@ -774,9 +774,9 @@ static int get_command(FILE * source, char *command)
return 1;
}
- prompt_str = setup_prompt_string(shell_context);
-
if (source == stdin) {
+ prompt_str = setup_prompt_string(shell_context);
+
#ifdef BB_FEATURE_SH_COMMAND_EDITING
/*
** enable command line editing only while a command line