summaryrefslogtreecommitdiff
path: root/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Main/src-server/HostUSBDeviceImpl.cpp')
-rw-r--r--src/VBox/Main/src-server/HostUSBDeviceImpl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp b/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
index 094df8b68..85b6d66f3 100644
--- a/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
+++ b/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
@@ -1,4 +1,4 @@
-/* $Id: HostUSBDeviceImpl.cpp $ */
+/* $Id: HostUSBDeviceImpl.cpp 35812 2011-02-01 13:46:37Z vboxsync $ */
/** @file
* VirtualBox IHostUSBDevice COM interface implementation.
*/
@@ -39,12 +39,13 @@ HRESULT HostUSBDevice::FinalConstruct()
mUSBProxyService = NULL;
mUsb = NULL;
- return S_OK;
+ return BaseFinalConstruct();
}
void HostUSBDevice::FinalRelease()
{
uninit();
+ BaseFinalRelease();
}
// public initializer/uninitializer for internal purposes only