commit | 8f1b392f2acee0ad44d082520c256a6e96f4a0bb | [log] [tgz] |
---|---|---|
author | Jin Qian <jinqian@google.com> | Wed Dec 06 07:37:30 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Wed Dec 06 07:37:30 2017 +0000 |
tree | 6a89e20b912e93166eb928b016df7ecb3a13451c | |
parent | 38f425c06cf70672fb926ec648aecee62ba8899e [diff] | |
parent | ca9672e915b83ff24d3e453ea3496d0bf61dcb1d [diff] |
Merge "fastboot: fix build break" am: cce381e307 am: 2cbce3739b Change-Id: Ia6333f699fee3c67fa5f425cc42a871a8408fccb
diff --git a/fastboot/fs.cpp b/fastboot/fs.cpp index fe5cbc3..9949eae 100644 --- a/fastboot/fs.cpp +++ b/fastboot/fs.cpp
@@ -83,7 +83,7 @@ int status; pid_t child; if ((child = fork()) == 0) { - execvpe(path, const_cast<char**>(argv), const_cast<char**>(envp)); + execve(path, const_cast<char**>(argv), const_cast<char**>(envp)); _exit(EXIT_FAILURE); } if (child < 0) {