Changeset 25429 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Dec 16, 2009 2:00:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r25428 r25429 618 618 void VBOXCALL supdrvCleanupSession(PSUPDRVDEVEXT pDevExt, PSUPDRVSESSION pSession) 619 619 { 620 int rc ;620 int rc, rcLock; 621 621 PSUPDRVBUNDLE pBundle; 622 622 LogFlow(("supdrvCleanupSession: pSession=%p\n", pSession)); … … 783 783 * Loaded images needs to be dereferenced and possibly freed up. 784 784 */ 785 intrcLock = supdrvLdrLock(pDevExt);785 rcLock = supdrvLdrLock(pDevExt); 786 786 if (rcLock != VINF_SUCCESS) 787 787 Log(("supdrvLdrLock failed with rc=%d\n", rcLock));
Note:
See TracChangeset
for help on using the changeset viewer.