VirtualBox

Changeset 67052 in vbox for trunk/src/VBox


Ignore:
Timestamp:
May 24, 2017 7:48:10 AM (8 years ago)
Author:
vboxsync
Message:

VMM/CPUMDbg: Avoid assertion when dumping cr8 value when the APIC isn't present.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUMDbg.cpp

    r66885 r67052  
    406406    uint64_t u64Value;
    407407    int rc = CPUMGetGuestCRx(pVCpu, pDesc->offRegister, &u64Value);
    408     AssertRCReturn(rc, rc);
     408    if (rc == VERR_PDM_NO_APIC_INSTANCE) /* CR8 might not be available, see @bugref{8868}.*/
     409        u64Value = 0;
     410    else
     411        AssertRCReturn(rc, rc);
    409412    switch (pDesc->enmType)
    410413    {
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