diff options
author | Oz Linden <oz@lindenlab.com> | 2010-12-15 10:12:49 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-12-15 10:12:49 -0500 |
commit | 33f745b237da613708cb50587c6589b1ac5cc5c6 (patch) | |
tree | 3ada9cc4507569f316f68b0002f9155cb7ade4e6 /indra/llcommon | |
parent | 2027ce56a217b97848f5582a14f8ed81593a1f54 (diff) | |
parent | cc345710d240b85e7e5b219fc5a8af01349549bc (diff) |
pulling fixes back from viewer-beta
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llprocesslauncher.cpp | 9 |
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; } |