Changeset 27667 in vbox
- Timestamp:
- Mar 24, 2010 1:38:19 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
r27503 r27667 94 94 /** @todo search the PATH (add flag for this). */ 95 95 AssertPtrNullReturn(pszAsUser, VERR_INVALID_POINTER); 96 AssertReturn(!pszAsUser || *pszAsUser, VERR_INVALID_PARAMETER); 97 AssertReturn(!pszPassword || pszAsUser, VERR_INVALID_PARAMETER); 98 AssertPtrNullReturn(pszPassword, VERR_INVALID_POINTER); 96 99 97 100 /* -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r27613 r27667 341 341 AssertReturn(hEnv != NIL_RTENV, VERR_INVALID_PARAMETER); 342 342 AssertPtrReturn(papszArgs, VERR_INVALID_PARAMETER); 343 AssertPtrNullReturn(pszAsUser, VERR_INVALID_POINTER); 344 AssertReturn(!pszAsUser || *pszAsUser, VERR_INVALID_PARAMETER); 345 AssertReturn(!pszPassword || pszAsUser, VERR_INVALID_PARAMETER); 346 AssertPtrNullReturn(pszPassword, VERR_INVALID_POINTER); 343 347 /** @todo search the PATH (add flag for this). */ 344 348
Note:
See TracChangeset
for help on using the changeset viewer.