Merge "Replace vfork() with fork()."

am: 21b381622d

Change-Id: Ia06201cedfcca6358f6f65face5325a4cf528f72
This commit is contained in:
George Burgess IV
2018-02-23 17:24:51 +00:00
committed by android-build-merger
+1 -1
View File
@@ -189,7 +189,7 @@ static int exec_cmd(const std::vector<std::string>& args) {
argv.push_back(nullptr);
pid_t child;
if ((child = vfork()) == 0) {
if ((child = fork()) == 0) {
execv(argv[0], argv.data());
_exit(EXIT_FAILURE);
}