summaryrefslogtreecommitdiff
path: root/indra/llcommon/llprocesslauncher.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2010-12-15 10:12:49 -0500
committerOz Linden <oz@lindenlab.com>2010-12-15 10:12:49 -0500
commit33f745b237da613708cb50587c6589b1ac5cc5c6 (patch)
tree3ada9cc4507569f316f68b0002f9155cb7ade4e6 /indra/llcommon/llprocesslauncher.cpp
parent2027ce56a217b97848f5582a14f8ed81593a1f54 (diff)
parentcc345710d240b85e7e5b219fc5a8af01349549bc (diff)
pulling fixes back from viewer-beta
Diffstat (limited to 'indra/llcommon/llprocesslauncher.cpp')
-rw-r--r--indra/llcommon/llprocesslauncher.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/indra/llcommon/llprocesslauncher.cpp b/indra/llcommon/llprocesslauncher.cpp
index 81e5f8820d..4b0f6b0251 100644
--- a/indra/llcommon/llprocesslauncher.cpp
+++ b/indra/llcommon/llprocesslauncher.cpp
@@ -265,14 +265,7 @@ int LLProcessLauncher::launch(void)
delete[] fake_argv;
mProcessID = id;
-
- // At this point, the child process will have been created (since that's how vfork works -- the child borrowed our execution context until it forked)
- // If the process doesn't exist at this point, the exec failed.
- if(!isRunning())
- {
- result = -1;
- }
-
+
return result;
}