From 19291f7fb4cf9810208ac5cd2ae3d3705c273f64 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 15 May 2021 00:36:05 +0200 Subject: [PATCH] dupset: remove totally off comment Closes #7067 --- lib/easy.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/easy.c b/lib/easy.c index 8983dbccec..530b7c73f2 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -789,7 +789,6 @@ static CURLcode dupset(struct Curl_easy *dst, struct Curl_easy *src) /* duplicate all blobs */ for(j = (enum dupblob)0; j < BLOB_LAST; j++) { result = Curl_setblobopt(&dst->set.blobs[j], src->set.blobs[j]); - /* Curl_setstropt return CURLE_BAD_FUNCTION_ARGUMENT with blob */ if(result) return result; }