commit | 2cbce3739b8624d56aad9b787e430657a751b476 | [log] [tgz] |
---|---|---|
author | Jin Qian <jinqian@google.com> | Wed Dec 06 07:33:52 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Wed Dec 06 07:33:52 2017 +0000 |
tree | 52ea3628dbae1c875dd7b68b9985ba41044e05e5 | |
parent | 6ba4207461b6a5d6570438c8448ad009e4185143 [diff] | |
parent | cce381e307dd3b2a3b54463afae53b6a8a30cefc [diff] |
Merge "fastboot: fix build break" am: cce381e307 Change-Id: I1492e940fff923a979d957d9ca1d51ecffdb6492
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) {