aboutsummaryrefslogtreecommitdiff
path: root/init/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/init.c')
-rw-r--r--init/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index a196ab3ed..543ec2ea8 100644
--- a/init/init.c
+++ b/init/init.c
@@ -436,10 +436,11 @@ static pid_t run(const struct init_action *a)
++cmdpath;
/* find the last component in the command pathname */
- s = bb_get_last_path_component(cmdpath);
+ s = bb_get_last_path_component_nostrip(cmdpath);
/* make a new argv[0] */
- if ((cmd[0] = malloc(strlen(s) + 2)) == NULL) {
+ cmd[0] = malloc(strlen(s) + 2);
+ if (cmd[0] == NULL) {
message(L_LOG | L_CONSOLE, bb_msg_memory_exhausted);
cmd[0] = cmdpath;
} else {