Changeset 29638 in vbox
- Timestamp:
- May 18, 2010 1:53:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r29620 r29638 779 779 CheckComArgStrNotEmptyOrNull(aCommand); 780 780 CheckComArgOutPointerValid(aPID); 781 CheckComArgStrNotEmptyOrNull(aUserName); /* Do not allow anonymous executions (with system rights). */782 781 CheckComArgOutPointerValid(aProgress); 782 783 /* Do not allow anonymous executions (with system rights). */ 784 if (RT_UNLIKELY((aUserName) == NULL || *(aUserName) == '\0')) 785 return setError(E_INVALIDARG, tr("No user name specified")); 783 786 784 787 AutoCaller autoCaller(this); … … 1046 1049 { 1047 1050 rc = setError(VBOX_E_IPRT_ERROR, 1048 tr("The operation was canceled ."));1051 tr("The operation was canceled")); 1049 1052 } 1050 1053 }
Note:
See TracChangeset
for help on using the changeset viewer.