From 27f8666565ef77616be73066968bf774ea99af73 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 27 Sep 2007 14:16:20 -0400 Subject: [PATCH] ENH: remove junk from output --- Source/cmWin32ProcessExecution.cxx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/cmWin32ProcessExecution.cxx b/Source/cmWin32ProcessExecution.cxx index 165bd21b55..67ceaef0bf 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;