am 4fd6d501: Merge "Init: Fix literal"

* commit '4fd6d50181491f178f7ad7c6c094cbd18ed42ef6':
  Init: Fix literal
This commit is contained in:
Andreas Gampe 2015-02-03 19:43:53 +00:00 committed by Android Git Automerger
commit f93f8903f7
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ void service_start(struct service *svc, const char *dynamic_args)
if (arg_idx == INIT_PARSER_MAXARGS)
break;
}
arg_ptrs[arg_idx] = '\0';
arg_ptrs[arg_idx] = NULL;
execve(svc->args[0], (char**) arg_ptrs, (char**) ENV);
}
_exit(127);