forked from OSchip/llvm-project
Check if ErrMsg is null. This fixes the "not" command.
llvm-svn: 117666
This commit is contained in:
parent
e1db7f2005
commit
5bc07d2bce
|
@ -359,23 +359,28 @@ Program::Wait(const sys::Path &path,
|
|||
result = 126;
|
||||
#endif
|
||||
if (result == 127) {
|
||||
if (ErrMsg)
|
||||
*ErrMsg = llvm::sys::StrError(ENOENT);
|
||||
return -1;
|
||||
}
|
||||
if (result == 126) {
|
||||
if (ErrMsg)
|
||||
*ErrMsg = "Program could not be executed";
|
||||
return -1;
|
||||
}
|
||||
} else if (WIFSIGNALED(status)) {
|
||||
if (ErrMsg) {
|
||||
*ErrMsg = strsignal(WTERMSIG(status));
|
||||
#ifdef WCOREDUMP
|
||||
if (WCOREDUMP(status))
|
||||
*ErrMsg += " (core dumped)";
|
||||
#endif
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
return result;
|
||||
#else
|
||||
if (ErrMsg)
|
||||
*ErrMsg = "Program::Wait is not implemented on this platform yet!";
|
||||
return -1;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue