VirtualBox

忽略:
時間撮記:
2017-5-24 上午07:48:10 (8 年 以前)
作者:
vboxsync
訊息:

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

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • 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    {
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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