From c93816652081a39f2e8eabce9bdb0d32aa82a455 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 21 Nov 2000 19:06:55 +0000
Subject: [PATCH] set rangestringalloc to 0 after the string has been freed to
 prevent it from being freed twice (a NULL free the second time)

---
 lib/url.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/url.c b/lib/url.c
index a88d1a2143..878aee1f64 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -191,6 +191,7 @@ void static urlfree(struct UrlData *data, bool totally)
   if(data->bits.rangestringalloc) {
     free(data->range);
     data->range=NULL;
+    data->bits.rangestringalloc=0; /* free now */
   }
 
   if(data->ptr_proxyuserpwd) {
@@ -693,7 +694,7 @@ static CURLcode _connect(CURL *curl, CURLconnect **in_connect)
   char *tmp;
   char *buf;
   CURLcode result;
-  char resumerange[12]="";
+  char resumerange[40]="";
   struct UrlData *data = curl;
   struct connectdata *conn;
 #ifdef HAVE_SIGACTION
-- 
GitLab