Changeset 18022 in vbox for trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
- Timestamp:
- Mar 17, 2009 1:21:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r18019 r18022 294 294 #ifdef VBOX_WITH_GUEST_BUGCHECK_DETECTION 295 295 /* Unregister bugcheck callback. */ 296 if (pDevExt->bBugcheckCallbackRegistered && pDevExt->bugcheckContext) 297 { 298 if (FALSE == KeDeregisterBugCheckCallback(&pDevExt->bugcheckContext->bugcheckRecord)) 299 dprintf(("VBoxGuest::VBoxGuestUnload: Unregistering bugcheck callback routine failed!\n")); 296 if (pDevExt->bugcheckContext) 297 { 298 if (pDevExt->bBugcheckCallbackRegistered) 299 { 300 if (FALSE == KeDeregisterBugCheckCallback(&pDevExt->bugcheckContext->bugcheckRecord)) 301 dprintf(("VBoxGuest::VBoxGuestUnload: Unregistering bugcheck callback routine failed!\n")); 302 } 300 303 301 304 ExFreePool(&pDevExt->bugcheckContext); 305 pDevExt->bugcheckContext = NULL; 302 306 pDevExt->bBugcheckCallbackRegistered = FALSE; 303 307 }
Note:
See TracChangeset
for help on using the changeset viewer.