Changeset 14938 in vbox for trunk/src/VBox
- Timestamp:
- Dec 3, 2008 12:10:57 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r14820 r14938 1558 1558 return E_POINTER; 1559 1559 1560 if (!aName || *aName == 0) 1561 return E_INVALIDARG; 1560 CheckComArgStrNotEmptyOrNull(aName); 1562 1561 1563 1562 AutoWriteLock alock (this); -
trunk/src/VBox/Main/NetworkAdapterImpl.cpp
r14772 r14938 425 425 return E_INVALIDARG; 426 426 #else 427 // empty strings are not allowed as path names 428 if (aHostInterface && !(*aHostInterface)) 429 return E_INVALIDARG; 427 CheckComArgStrNotEmptyOrNull(aHostInterface); 430 428 #endif 431 429 -
trunk/src/VBox/Main/USBControllerImpl.cpp
r14772 r14938 395 395 return E_POINTER; 396 396 397 if (!aName || *aName == 0) 398 return E_INVALIDARG; 397 CheckComArgStrNotEmptyOrNull(aName); 399 398 400 399 AutoCaller autoCaller (this);
Note:
See TracChangeset
for help on using the changeset viewer.