Changeset 15026 in vbox
- Timestamp:
- Dec 5, 2008 9:43:41 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
r15007 r15026 64 64 RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess) 65 65 { 66 int rc = 0;66 int rc; 67 67 68 68 /* … … 83 83 if (access(pszExec, X_OK)) 84 84 { 85 intrc = RTErrConvertFromErrno(errno);85 rc = RTErrConvertFromErrno(errno); 86 86 AssertMsgFailed(("'%s' %Rrc!\n", pszExec, rc)); 87 87 return rc; … … 146 146 return VINF_SUCCESS; 147 147 } 148 intrc = errno;148 rc = errno; 149 149 } 150 150
Note:
See TracChangeset
for help on using the changeset viewer.