From aa1c3bb46dbf50e1c70679a5b804fa08b9d1f795 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Thu, 22 Mar 2001 19:14:35 +0000
Subject: [PATCH] reset the follow location counter in Curl_perform() so that
 we can follow new locations on the same connection that was previously
 followed on

---
 lib/transfer.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/transfer.c b/lib/transfer.c
index 59b79960fa..ce4d5a6786 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -737,6 +737,9 @@ CURLcode Curl_perform(CURL *curl)
   struct connectdata *conn=NULL;
   bool port=TRUE; /* allow data->use_port to set port to use */
 
+  data->followlocation=0; /* reset the location-follow counter */
+  data->bits.this_is_a_follow = FALSE; /* reset this */
+
   Curl_pgrsStartNow(data);
 
   do {
-- 
GitLab