diff options
Diffstat (limited to 'src/VBox/Main/src-server/SerialPortImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-server/SerialPortImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VBox/Main/src-server/SerialPortImpl.cpp b/src/VBox/Main/src-server/SerialPortImpl.cpp index f1d43ce92..81234c490 100644 --- a/src/VBox/Main/src-server/SerialPortImpl.cpp +++ b/src/VBox/Main/src-server/SerialPortImpl.cpp @@ -57,12 +57,13 @@ DEFINE_EMPTY_CTOR_DTOR (SerialPort) HRESULT SerialPort::FinalConstruct() { - return S_OK; + return BaseFinalConstruct(); } void SerialPort::FinalRelease() { uninit(); + BaseFinalRelease(); } // public initializer/uninitializer for internal purposes only |