VirtualBox

Ignore:
Timestamp:
Nov 26, 2009 2:22:44 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
55308
Message:

IPRT: Fixed -Wshadow warnings, found two bugs in error paths.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/xml.cpp

    r23973 r25000  
    340340void MemoryBuf::setPos (uint64_t aPos)
    341341{
    342     size_t pos = (size_t) aPos;
    343     if ((uint64_t) pos != aPos)
     342    size_t off = (size_t) aPos;
     343    if ((uint64_t) off != aPos)
    344344        throw EInvalidArg();
    345345
    346     if (pos > m->len)
     346    if (off > m->len)
    347347        throw EInvalidArg();
    348348
    349     m->pos = pos;
     349    m->pos = off;
    350350}
    351351
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