Changeset 51707 in vbox for trunk/src/VBox/Runtime/common/misc/http.cpp
- Timestamp:
- Jun 24, 2014 11:09:59 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/http.cpp
r51704 r51707 394 394 curl_easy_getinfo(pHttpInt->pCurl, CURLINFO_REDIRECT_URL, &pszRedirect); 395 395 size_t cb = strlen(pszRedirect); 396 if (cb > 0 && cb < 4096)396 if (cb > 0 && cb < 2048) 397 397 pHttpInt->pszRedirLocation = RTStrDup(pszRedirect); 398 398 rc = VERR_HTTP_REDIRECTED;
Note:
See TracChangeset
for help on using the changeset viewer.