Changeset 60054 in vbox for trunk/src/VBox/Runtime/generic
- 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/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
Note:
See TracChangeset
for help on using the changeset viewer.