Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(821)

Unified Diff: base/process_util_linux.cc

Issue 7968: Get url_request_unittest.cc to build on Linux. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/net_unittests.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_linux.cc
===================================================================
--- base/process_util_linux.cc (revision 4466)
+++ base/process_util_linux.cc (working copy)
@@ -40,7 +40,7 @@
int pid = fork();
if (pid == 0) {
- execv(argv_copy[0], argv_copy);
+ execvp(argv_copy[0], argv_copy);
} else if (pid < 0) {
retval = false;
} else {
« no previous file with comments | « no previous file | net/net_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698