VirtualBox

Changeset 33122 in vbox


Ignore:
Timestamp:
Oct 14, 2010 9:06:20 AM (14 years ago)
Author:
vboxsync
Message:

Extended ldtr/tr check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/HWACCM.cpp

    r33066 r33122  
    22592259                }
    22602260                /* VT-x also chokes on invalid tr or ldtr selectors (minix) */
    2261                 if (    pCtx->tr > pCtx->gdtr.cbGdt
    2262                     ||  pCtx->ldtr > pCtx->gdtr.cbGdt)
     2261                if (    pCtx->gdtr.cbGdt
     2262                    &&  (   pCtx->tr > pCtx->gdtr.cbGdt
     2263                         || pCtx->ldtr > pCtx->gdtr.cbGdt))
    22632264                {
    2264                     return false;
     2265                        return false;
    22652266                }
    22662267            }
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