VirtualBox

Changeset 4212 in vbox for trunk/src/VBox/Debugger


Ignore:
Timestamp:
Aug 18, 2007 1:35:13 AM (17 years ago)
Author:
vboxsync
Message:

SELMSelInfoIsExpandDown

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGConsole.cpp

    r4210 r4212  
     1/** $Id$ */
    12/** @file
    2  *
    3  * Debugger Console.
     3 * DBGC - Debugger Console.
    44 */
    55
     
    62356235                if (VBOX_SUCCESS(rc))
    62366236                {
    6237                     RTGCUINTPTR cb;
    6238                     /** @todo Add SELMSelInfoIsExpandDown() */
    6239                     if (    (SelInfo.Raw.Gen.u4Type & X86_SEL_TYPE_DOWN)
    6240                         &&  SelInfo.Raw.Gen.u1DescType
    6241                         &&  (   SelInfo.Raw.Gen.u4Type == X86_SEL_TYPE_RO_DOWN
    6242                              || SelInfo.Raw.Gen.u4Type == X86_SEL_TYPE_RO_DOWN_ACC
    6243                              || SelInfo.Raw.Gen.u4Type == X86_SEL_TYPE_RW_DOWN
    6244                              || SelInfo.Raw.Gen.u4Type == X86_SEL_TYPE_RW_DOWN_ACC))
     6237                    RTGCUINTPTR cb; /* -1 byte */
     6238                    if (SELMSelInfoIsExpandDown(&SelInfo))
    62456239                    {
    62466240                        if (    !SelInfo.Raw.Gen.u1Granularity
     
    62536247                    else
    62546248                    {
    6255                         if (Address.off >= SelInfo.cbLimit)
     6249                        if (Address.off > SelInfo.cbLimit)
    62566250                            return VERR_OUT_OF_SELECTOR_BOUNDS;
    62576251                        cb = SelInfo.cbLimit - Address.off;
     
    62616255                        if (!pcbRead)
    62626256                            return VERR_OUT_OF_SELECTOR_BOUNDS;
    6263                         cbRead = cb;
     6257                        cbRead = cb + 1;
    62646258                    }
    62656259                }
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