VirtualBox

Changeset 2110 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 16, 2007 4:59:39 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
20428
Message:

Main: Fixed: IDVDImage::size always returned (size &0xFFFFFFFF) so that sizes > 4 GB were reported incorrectly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/DVDImageImpl.cpp

    r1 r2110  
    220220    else
    221221    {
     222        AssertCompile (sizeof (uint64_t) == sizeof (ULONG64));
     223
    222224        uint64_t u64Size = 0;
    223225
     
    225227
    226228        if (VBOX_SUCCESS (vrc))
    227             *size = (ULONG) u64Size;
     229            *size = u64Size;
    228230        else
    229231            rc = setError (E_FAIL,
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