Changeset 40525 in vbox
- Timestamp:
- Mar 19, 2012 9:29:29 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r40493 r40525 890 890 STDMETHODIMP VirtualBox::COMGETTER(Host)(IHost **aHost) 891 891 { 892 CheckComArgOut SafeArrayPointerValid(aHost);892 CheckComArgOutPointerValid(aHost); 893 893 894 894 AutoCaller autoCaller(this); … … 903 903 VirtualBox::COMGETTER(SystemProperties)(ISystemProperties **aSystemProperties) 904 904 { 905 CheckComArgOut SafeArrayPointerValid(aSystemProperties);905 CheckComArgOutPointerValid(aSystemProperties); 906 906 907 907 AutoCaller autoCaller(this); … … 976 976 STDMETHODIMP VirtualBox::COMGETTER(ProgressOperations)(ComSafeArrayOut(IProgress *, aOperations)) 977 977 { 978 CheckComArgOut SafeArrayPointerValid(aOperations);978 CheckComArgOutPointerValid(aOperations); 979 979 980 980 AutoCaller autoCaller(this); … … 1021 1021 { 1022 1022 #ifdef VBOX_WITH_RESOURCE_USAGE_API 1023 CheckComArgOut SafeArrayPointerValid(aPerformanceCollector);1023 CheckComArgOutPointerValid(aPerformanceCollector); 1024 1024 1025 1025 AutoCaller autoCaller(this); … … 1519 1519 { 1520 1520 CheckComArgStrNotEmptyOrNull(aSettingsFile); 1521 CheckComArgOut SafeArrayPointerValid(aMachine);1521 CheckComArgOutPointerValid(aMachine); 1522 1522 1523 1523 AutoCaller autoCaller(this); … … 1582 1582 1583 1583 CheckComArgStrNotEmptyOrNull(aNameOrId); 1584 CheckComArgOut SafeArrayPointerValid(aMachine);1584 CheckComArgOutPointerValid(aMachine); 1585 1585 1586 1586 AutoCaller autoCaller(this); … … 1673 1673 { 1674 1674 CheckComArgStrNotEmptyOrNull(aLocation); 1675 CheckComArgOut SafeArrayPointerValid(aMedium);1675 CheckComArgOutPointerValid(aMedium); 1676 1676 1677 1677 AutoCaller autoCaller(this); … … 1751 1751 { 1752 1752 CheckComArgStrNotEmptyOrNull(aLocation); 1753 CheckComArgOut SafeArrayPointerValid(aMedium);1753 CheckComArgOutPointerValid(aMedium); 1754 1754 1755 1755 AutoCaller autoCaller(this);
Note:
See TracChangeset
for help on using the changeset viewer.