Browse Source

curl: backport upstream fix to 7.62.0 regression

Backport upstream curl commit 2c5ec339ea (Curl_follow: accept
non-supported schemes for "fake" redirects, 2018-11-01) to get
a fix to curl issue 3210, a regression in 7.62.0.
Brad King 7 years ago
parent
commit
c1ad5118de
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Utilities/cmcurl/lib/transfer.c

+ 2 - 1
Utilities/cmcurl/lib/transfer.c

@@ -1514,7 +1514,8 @@ CURLcode Curl_follow(struct Curl_easy *data,
     disallowport = TRUE;
 
   DEBUGASSERT(data->state.uh);
-  uc = curl_url_set(data->state.uh, CURLUPART_URL, newurl, 0);
+  uc = curl_url_set(data->state.uh, CURLUPART_URL, newurl,
+                    (type == FOLLOW_FAKE) ? CURLU_NON_SUPPORT_SCHEME : 0);
   if(uc)
     return Curl_uc_to_curlcode(uc);