Changeset 51629 in vbox
- Timestamp:
- Jun 17, 2014 11:59:31 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r51617 r51629 4948 4948 4949 4949 Assert(pInterface); 4950 Assert(pThis->pDrv); 4951 Assert(pThis->pDrv->pu8Data); 4950 4951 int rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY); 4952 AssertRC(rc); 4952 4953 4953 4954 /* Check if there is something to do at all. */ … … 4958 4959 LogFlow(("vgaPortUpdateDisplayRect: nothing to do fRender is false.\n")); 4959 4960 #endif /* DEBUG_sunlover */ 4961 PDMCritSectLeave(&pThis->CritSect); 4960 4962 return; 4961 4963 } 4962 4964 4963 int rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY);4964 Assert RC(rc);4965 Assert(pThis->pDrv); 4966 Assert(pThis->pDrv->pu8Data); 4965 4967 4966 4968 /* Correct negative x and y coordinates. */
Note:
See TracChangeset
for help on using the changeset viewer.