Changeset 60054 in vbox
- Timestamp:
- Mar 15, 2016 9:46:31 PM (9 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r59996 r60054 9614 9614 const ComObjPtr<MediumAttachment> &pAtt = *it; 9615 9615 // should never happen, but deal with NULL pointers in the list. 9616 Assert Stmt(!pAtt.isNull(), continue);9616 AssertContinue(!pAtt.isNull()); 9617 9617 9618 9618 // getControllerName() needs caller+read lock … … 12135 12135 MediumAttachment* pAttach = *it; 12136 12136 /* just in case */ 12137 Assert Stmt(pAttach, continue);12137 AssertContinue(pAttach); 12138 12138 12139 12139 AutoCaller localAutoCallerA(pAttach); -
trunk/src/VBox/Main/src-server/Performance.cpp
r56994 r60054 1075 1075 1076 1076 /* just in case */ 1077 Assert Stmt(!pMedium.isNull(), continue);1077 AssertContinue(!pMedium.isNull()); 1078 1078 1079 1079 AutoCaller localAutoCaller(pMedium); -
trunk/src/VBox/Runtime/generic/http-curl.cpp
r59396 r60054 1049 1049 { 1050 1050 CFStringRef hStrProxyType = (CFStringRef)CFDictionaryGetValue(hDictProxy, kCFProxyTypeKey); 1051 Assert Stmt(hStrProxyType, continue);1051 AssertContinue(hStrProxyType); 1052 1052 1053 1053 /* … … 1160 1160 { 1161 1161 CFDictionaryRef hDictProxy = (CFDictionaryRef)CFArrayGetValueAtIndex(hArrayProxies, i); 1162 Assert Stmt(hDictProxy, continue);1162 AssertContinue(hDictProxy); 1163 1163 1164 1164 rcRet = rtHttpDarwinTryConfigProxy(pThis, hDictProxy, hUrlTarget, fIgnorePacType); … … 1208 1208 { 1209 1209 CFStringRef hStr = (CFStringRef)CFArrayGetValueAtIndex(hArray, i); 1210 Assert Stmt(hStr, continue);1211 Assert Stmt(CFStringGetCString(hStr, szTmp, sizeof(szTmp), kCFStringEncodingUTF8), continue);1210 AssertContinue(hStr); 1211 AssertContinue(CFStringGetCString(hStr, szTmp, sizeof(szTmp), kCFStringEncodingUTF8)); 1212 1212 RTStrToLower(szTmp); 1213 1213 -
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)) -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r59817 r60054 777 777 uNew.TokPriv.PrivilegeCount = 1; 778 778 uNew.TokPriv.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 779 Assert Stmt(LookupPrivilegeValue(NULL, s_aPrivileges[i].pszName, &uNew.TokPriv.Privileges[0].Luid), continue);779 AssertContinue(LookupPrivilegeValue(NULL, s_aPrivileges[i].pszName, &uNew.TokPriv.Privileges[0].Luid)); 780 780 uOld = uNew; 781 781 SetLastError(NO_ERROR); … … 1086 1086 { 1087 1087 PACE_HEADER pAceHdr; 1088 Assert Stmt(GetAce(pDstAcl, i, (PVOID *)&pAceHdr), continue);1088 AssertContinue(GetAce(pDstAcl, i, (PVOID *)&pAceHdr)); 1089 1089 if ( pAceHdr->AceSize == cbAllowedAce 1090 1090 && memcmp(pAceHdr, &AceBuf.Core, cbAllowedAce) == 0)
Note:
See TracChangeset
for help on using the changeset viewer.