summaryrefslogtreecommitdiff
path: root/indra/llcommon/llprocesslauncher.cpp
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2010-12-14 11:45:06 -0800
committerbrad kittenbrink <brad@lindenlab.com>2010-12-14 11:45:06 -0800
commitb159a961bd29e88503b1fa62c3e9cf4212e0bf1d (patch)
treef3b7ced30f0baaee2a8af2a6903c1f42b6f04c5e /indra/llcommon/llprocesslauncher.cpp
parentdbd06789e6c91f6d9a42e5aafa98996ada915c21 (diff)
parent4f9e6ff2ffcd3c277399d35e5765b8525b3e1b53 (diff)
Merge CHOP-267 fixes with latest 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;
}