VirtualBox

Changeset 11570 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Aug 22, 2008 12:15:39 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
35174
Message:

Incorrect destination offset in PGMPhysInterpretedRead (crossed page case). (pointed out by Frank)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp

    r11525 r11570  
    23212321            {
    23222322                case VINF_SUCCESS:
    2323                     memcpy((uint8_t *)pvDst + cb2, pvSrc2, cb2);
     2323                    memcpy((uint8_t *)pvDst + cb1, pvSrc2, cb2);
    23242324                    break;
    23252325                case VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS:
    2326                     memset((uint8_t *)pvDst + cb2, 0, cb2);
     2326                    memset((uint8_t *)pvDst + cb1, 0, cb2);
    23272327                    break;
    23282328                default:
Note: See TracChangeset for help on using the changeset viewer.

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