Changeset 44099 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Dec 12, 2012 8:35:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
r44098 r44099 77 77 { 78 78 RTMemFree(pNode); 79 return VERR_NO_MEMORY;79 return NULL; 80 80 } 81 81 pNode->pszValue = NULL; … … 385 385 void VBoxServicePropCacheDestroy(PVBOXSERVICEVEPROPCACHE pCache) 386 386 { 387 AssertPtrReturn (pCache, VERR_INVALID_POINTER);387 AssertPtrReturnVoid(pCache); 388 388 Assert(pCache->uClientID); 389 389
Note:
See TracChangeset
for help on using the changeset viewer.