[cmake-commits] hoffman committed cmWin32ProcessExecution.cxx 1.31 1.32

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Sep 27 14:16:22 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv9841

Modified Files:
	cmWin32ProcessExecution.cxx 
Log Message:
ENH: remove junk from output


Index: cmWin32ProcessExecution.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmWin32ProcessExecution.cxx,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- cmWin32ProcessExecution.cxx	24 Jul 2007 19:55:03 -0000	1.31
+++ cmWin32ProcessExecution.cxx	27 Sep 2007 18:16:20 -0000	1.32
@@ -732,37 +732,31 @@
   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;



More information about the Cmake-commits mailing list