Procházet zdrojové kódy

Output error message to stdout in case of execv failure.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@113 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz před 8 roky
rodič
revize
4f5cbfdfd3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      child.cpp

+ 1
- 1
child.cpp Zobrazit soubor

@@ -1254,7 +1254,7 @@ namespace CodeDweller {
errMsg = "Error (from exec) running the command \"";
errMsg += execvArgv[0];
errMsg += "\": " + getErrorText();
iDummy = ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
exit(-1);
}

Načítá se…
Zrušit
Uložit