Changeset 42019 in vbox
- Timestamp:
- Jul 4, 2012 11:05:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Init.cpp
r42004 r42019 176 176 VbglPhysHeapTerminate (); 177 177 178 RT_ZERO(g_vbgldata);179 180 178 return; 181 179 } … … 282 280 # endif 283 281 284 vbglTerminateCommon ();285 282 /* driver open could fail, which does not prevent VbglInit from succeeding, 286 283 * close the driver only if it is opened */ … … 290 287 g_vbgldata.mutexDriverInit = NIL_RTSEMFASTMUTEX; 291 288 289 /* note: do vbglTerminateCommon as a last step since it zeroez up the g_vbgldata 290 * conceptually, doing vbglTerminateCommon last is correct 291 * since this is the reverse order to how init is done */ 292 vbglTerminateCommon (); 293 292 294 return; 293 295 }
Note:
See TracChangeset
for help on using the changeset viewer.