diff options
Diffstat (limited to 'libbb/run_shell.c')
-rw-r--r-- | libbb/run_shell.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libbb/run_shell.c b/libbb/run_shell.c index d154b9852..49e8a76c2 100644 --- a/libbb/run_shell.c +++ b/libbb/run_shell.c | |||
@@ -52,10 +52,7 @@ void run_shell ( const char *shell, int loginshell, const char *command, const c | |||
52 | for ( args = additional_args; args && *args; args++ ) | 52 | for ( args = additional_args; args && *args; args++ ) |
53 | additional_args_cnt++; | 53 | additional_args_cnt++; |
54 | 54 | ||
55 | if ( additional_args ) | ||
56 | args = (const char **) xmalloc (sizeof (char *) * ( 4 + additional_args_cnt )); | 55 | args = (const char **) xmalloc (sizeof (char *) * ( 4 + additional_args_cnt )); |
57 | else | ||
58 | args = (const char **) xmalloc (sizeof (char *) * 4 ); | ||
59 | 56 | ||
60 | args [0] = bb_get_last_path_component ( bb_xstrdup ( shell )); | 57 | args [0] = bb_get_last_path_component ( bb_xstrdup ( shell )); |
61 | 58 | ||
@@ -77,4 +74,3 @@ void run_shell ( const char *shell, int loginshell, const char *command, const c | |||
77 | execv ( shell, (char **) args ); | 74 | execv ( shell, (char **) args ); |
78 | bb_perror_msg_and_die ( "cannot run %s", shell ); | 75 | bb_perror_msg_and_die ( "cannot run %s", shell ); |
79 | } | 76 | } |
80 | |||