Changeset 65706 in vbox for trunk/src/VBox/HostServices/GuestProperties
- Timestamp:
- Feb 9, 2017 4:50:47 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r65102 r65706 1585 1585 return rc; 1586 1586 } 1587 1588 /** 1589 * @callback_method_impl{FNRTSTRSPACECALLBACK, Destroys Property.} 1590 */ 1591 static DECLCALLBACK(int) destroyProperty(PRTSTRSPACECORE pStr, void *pvUser) 1592 { 1593 RT_NOREF(pvUser); 1594 Property *pProp = RT_FROM_MEMBER(pStr, struct Property, mStrCore); 1595 delete pProp; 1596 return 0; 1597 } 1598 1587 1599 #endif 1588 1600 … … 1603 1615 mhReqQNotifyHost = NIL_RTREQQUEUE; 1604 1616 mhThreadNotifyHost = NIL_RTTHREAD; 1617 RTStrSpaceDestroy(&mhProperties, destroyProperty, NULL); 1618 mhProperties = NULL; 1605 1619 } 1606 1620 #endif
Note:
See TracChangeset
for help on using the changeset viewer.