Merge "Replace vfork() with fork()." am: 21b381622d

am: 44f2cb2d67

Change-Id: Ie67e2e0a39c781e27916294f501fcc4ef8fbd38f
This commit is contained in:
George Burgess IV
2018-02-23 17:31:08 +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);
}