浏览代码

ENH: remove warning on borland

Bill Hoffman 21 年之前
父节点
当前提交
2cf4a0270a
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      Source/cmWin32ProcessExecution.cxx

+ 1 - 2
Source/cmWin32ProcessExecution.cxx

@@ -456,8 +456,7 @@ static BOOL RealPopenCreateProcess(const char *cmdstring,
   
   // Free the buffer.
  
-  char* str = 0;
-  str = strcpy(new char[strlen((char*)lpMsgBuf)+1], (char*)lpMsgBuf); 
+  char* str = strcpy(new char[strlen((char*)lpMsgBuf)+1], (char*)lpMsgBuf); 
   LocalFree( lpMsgBuf );
   
   output += "CreateProcessError: ";