- Timestamp:
- Sep 6, 2018 11:42:42 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/http-curl.cpp
r74094 r74112 2316 2316 uint8_t * const pbSigRaw = (uint8_t *)pHdr + cbEstimated - cbSigRawAligned; 2317 2317 2318 pHdr->cchName = sizeof("Authorization") - 1; 2319 pHdr->offValue = sizeof("Authorization") + 1; 2320 char *pszLeft = pHdr->szData; 2321 size_t cbLeft = cbEstimated - RT_UOFFSETOF(RTHTTPHEADER, szData) - cbSigRawAligned; 2318 pHdr->cchName = sizeof("Authorization") - 1; 2319 pHdr->offValue = sizeof("Authorization") + 1; 2320 pHdr->Core.next = NULL; 2321 pHdr->Core.data = pHdr->szData; 2322 char *pszLeft = pHdr->szData; 2323 size_t cbLeft = cbEstimated - RT_UOFFSETOF(RTHTTPHEADER, szData) - cbSigRawAligned; 2322 2324 2323 2325 size_t cch = RTStrPrintf(pszLeft, cbLeft, s_szSuffixFmt, pszKeyId);
Note:
See TracChangeset
for help on using the changeset viewer.