Salome HOME
[bos #32518][EDF] (2022-T3)
[tools/libbatch.git] / src / Local / BatchManager_Local.cxx
index 07104288b8e29fabeef4206d0dbb56ac35cc8cc0..0ce224284c7144f953e974321ce94acf0364392e 100644 (file)
@@ -749,6 +749,7 @@ namespace Batch {
     Parametre param = _job.getParametre();
     Parametre::iterator it;
     PROCESS_INFORMATION pi;
+    ZeroMemory( &pi, sizeof(pi) );
 
     try {
 
@@ -770,7 +771,6 @@ namespace Batch {
       STARTUPINFO si;
       ZeroMemory( &si, sizeof(si) );
       si.cb = sizeof(si);
-      ZeroMemory( &pi, sizeof(pi) );
 
       // Copy the command to a non-const buffer
       char * buffer = strdup(comstr.c_str());