Changeset 60054 in vbox for trunk/src/VBox/Runtime/r3/darwin
- Timestamp:
- Mar 15, 2016 9:46:31 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp
r57582 r60054 62 62 { 63 63 CFDictionaryRef hDict = (CFDictionaryRef)CFArrayGetValueAtIndex(hTrustSettings, i); 64 Assert Stmt(CFGetTypeID(hDict) == CFDictionaryGetTypeID(), continue);64 AssertContinue(CFGetTypeID(hDict) == CFDictionaryGetTypeID()); 65 65 66 66 CFNumberRef hNum = (CFNumberRef)CFDictionaryGetValue(hDict, kSecTrustSettingsResult); 67 67 if (hNum) 68 68 { 69 Assert Stmt(CFGetTypeID(hNum) == CFNumberGetTypeID(), continue);69 AssertContinue(CFGetTypeID(hNum) == CFNumberGetTypeID()); 70 70 SInt32 iNum; 71 71 if (CFNumberGetValue(hNum, kCFNumberSInt32Type, &iNum))
Note:
See TracChangeset
for help on using the changeset viewer.