VirtualBox

Changeset 60054 in vbox for trunk/src/VBox/Runtime/r3/darwin


Ignore:
Timestamp:
Mar 15, 2016 9:46:31 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
106038
Message:

never use AssertStmt(..., continue) but use AssertContinue(...) (look at the implementation of AssertStmt)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp

    r57582 r60054  
    6262        {
    6363            CFDictionaryRef hDict = (CFDictionaryRef)CFArrayGetValueAtIndex(hTrustSettings, i);
    64             AssertStmt(CFGetTypeID(hDict) == CFDictionaryGetTypeID(), continue);
     64            AssertContinue(CFGetTypeID(hDict) == CFDictionaryGetTypeID());
    6565
    6666            CFNumberRef hNum = (CFNumberRef)CFDictionaryGetValue(hDict, kSecTrustSettingsResult);
    6767            if (hNum)
    6868            {
    69                 AssertStmt(CFGetTypeID(hNum) == CFNumberGetTypeID(), continue);
     69                AssertContinue(CFGetTypeID(hNum) == CFNumberGetTypeID());
    7070                SInt32 iNum;
    7171                if (CFNumberGetValue(hNum, kCFNumberSInt32Type, &iNum))
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