Changeset 71303 in vbox
- Timestamp:
- Mar 12, 2018 4:43:25 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r71302 r71303 2619 2619 fFlags |= aFlags[i]; 2620 2620 } 2621 /** @todo Validate flags. */ 2621 2622 if (fFlags) 2623 { 2624 if (!(fFlags & DirectoryCopyFlag_CopyIntoExisting)) 2625 return setError(E_INVALIDARG, tr("Invalid flags specified")); 2626 } 2622 2627 2623 2628 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); … … 2696 2701 fFlags |= aFlags[i]; 2697 2702 } 2698 /** @todo Validate flags. */ 2703 2704 if (fFlags) 2705 { 2706 if (!(fFlags & DirectoryCopyFlag_CopyIntoExisting)) 2707 return setError(E_INVALIDARG, tr("Invalid flags specified")); 2708 } 2699 2709 2700 2710 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
Note:
See TracChangeset
for help on using the changeset viewer.