VirtualBox

Changeset 95739 in vbox


Ignore:
Timestamp:
Jul 20, 2022 6:58:00 AM (2 years ago)
Author:
vboxsync
Message:

Devices/Graphics: corrected asserts. bugref:9830

Location:
trunk/src/VBox/Devices/Graphics
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r95603 r95739  
    34023402    {
    34033403        LogFunc(("Can't allocate buffer for context id %#x\n", CBCtx));
    3404         ASSERT_GUEST_FAILED();
     3404        AssertFailed();
    34053405        CBstatus = SVGA_CB_STATUS_QUEUE_FULL;
    34063406    }
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win-dx.cpp

    r95588 r95739  
    60246024                PVMSVGA3DSURFACE pSurface;
    60256025                rc = vmsvga3dSurfaceFromSid(pThisCC->svga.p3dState, sid, &pSurface);
    6026                 AssertRCReturnVoid(rc);
     6026                if (RT_FAILURE(rc))
     6027                {
     6028                    AssertMsgFailed(("sid = %u, rc = %Rrc\n", sid, rc));
     6029                    continue;
     6030                }
    60276031
    60286032                /* The guest might have invalidated the surface in which case pSurface->pBackendSurface is NULL. */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette