Changeset 78941 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 3, 2019 7:05:16 PM (6 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostDnsService.cpp
r77993 r78941 312 312 if (m) 313 313 { 314 m->pMonitorImpl->uninit(); 314 if (m->pMonitorImpl) 315 { 316 m->pMonitorImpl->uninit(); 317 318 delete m->pMonitorImpl; 319 m->pMonitorImpl = NULL; 320 } 315 321 316 322 delete m; -
trunk/src/VBox/Main/src-server/HostDnsService.h
r78030 r78941 68 68 virtual void uninit(void); 69 69 70 virtual ~HostDnsServiceBase(); 71 70 72 protected: 71 73 72 74 explicit HostDnsServiceBase(bool fThreaded = false); 73 virtual ~HostDnsServiceBase();74 75 75 76 void setInfo(const HostDnsInformation &);
Note:
See TracChangeset
for help on using the changeset viewer.