Changeset 66654 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 24, 2017 12:31:42 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115020
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp
r66577 r66654 646 646 if (pThis->hDevice != NULL) 647 647 { 648 if (!NtClose((HANDLE)pThis->hDevice))649 AssertFailed();648 NTSTATUS rcNt = NtClose((HANDLE)pThis->hDevice); 649 Assert(NT_SUCCESS(rcNt)); 650 650 pThis->hDevice = NIL_RTFILE; /* yes, that's right */ 651 651 }
Note:
See TracChangeset
for help on using the changeset viewer.