Changeset 18169 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 24, 2009 10:19:11 AM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r16447 r18169 2784 2784 SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PRTR3PTR ppGipR3, PRTHCPHYS pHCPhysGip) 2785 2785 { 2786 int rc = 0;2786 int rc = VINF_SUCCESS; 2787 2787 PSUPDRVDEVEXT pDevExt = pSession->pDevExt; 2788 2788 RTR3PTR pGip = NIL_RTR3PTR; … … 2912 2912 { 2913 2913 LogFlow(("SUPR0GipUnmap: Suspends GIP updating\n")); 2914 rc = RTTimerStop(pDevExt->pGipTimer); AssertRC(rc); rc = 0;2914 rc = RTTimerStop(pDevExt->pGipTimer); AssertRC(rc); rc = VINF_SUCCESS; 2915 2915 } 2916 2916 } -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r16933 r18169 323 323 } 324 324 } 325 return VINF_SUCCESS;325 return rc; 326 326 } 327 327
Note:
See TracChangeset
for help on using the changeset viewer.