Changeset 15001 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Dec 4, 2008 7:14:56 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
r14999 r15001 71 71 AssertPtrReturn(pszExec, VERR_INVALID_POINTER); 72 72 AssertReturn(*pszExec, VERR_INVALID_PARAMETER); 73 AssertReturn( fFlags & ~RTPROC_FLAGS_DAEMONIZE, VERR_INVALID_PARAMETER);73 AssertReturn(!(fFlags & ~RTPROC_FLAGS_DAEMONIZE), VERR_INVALID_PARAMETER); 74 74 AssertReturn(Env != NIL_RTENV, VERR_INVALID_PARAMETER); 75 75 const char * const *papszEnv = RTEnvGetExecEnvP(Env);
Note:
See TracChangeset
for help on using the changeset viewer.