summaryrefslogtreecommitdiffstats
path: root/Source/cmWin32ProcessExecution.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-09-27 18:16:20 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-09-27 18:16:20 (GMT)
commit27f8666565ef77616be73066968bf774ea99af73 (patch)
treed2cbd46ba9823f5435646c18cc5cdc85beb457fa /Source/cmWin32ProcessExecution.cxx
parent8edcbecb7a4898dbaed154275338542330b852ae (diff)
downloadCMake-27f8666565ef77616be73066968bf774ea99af73.zip
CMake-27f8666565ef77616be73066968bf774ea99af73.tar.gz
CMake-27f8666565ef77616be73066968bf774ea99af73.tar.bz2
ENH: remove junk from output
Diffstat (limited to 'Source/cmWin32ProcessExecution.cxx')
-rw-r--r--Source/cmWin32ProcessExecution.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmWin32ProcessExecution.cxx b/Source/cmWin32ProcessExecution.cxx
index 165bd21..67ceaef 100644
--- a/Source/cmWin32ProcessExecution.cxx
+++ b/Source/cmWin32ProcessExecution.cxx
@@ -732,37 +732,31 @@ bool cmWin32ProcessExecution::CloseHandles()
bool ret = true;
if (this->hChildStdinRd && !CloseHandle(this->hChildStdinRd))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStdinRd = 0;
if(this->hChildStdoutRdDup && !CloseHandle(this->hChildStdoutRdDup))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStdoutRdDup = 0;
if(this->hChildStderrRdDup && !CloseHandle(this->hChildStderrRdDup))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStderrRdDup = 0;
if(this->hChildStdinWrDup && !CloseHandle(this->hChildStdinWrDup))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStdinWrDup = 0;
if (this->hChildStdoutWr && !CloseHandle(this->hChildStdoutWr))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStdoutWr = 0;
if (this->hChildStderrWr && !CloseHandle(this->hChildStderrWr))
{
- this->Output += "CloseHandleError\n";
ret = false;
}
this->hChildStderrWr = 0;