From d04bab8873e45a59d71e146409035ba151bc877a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 22 May 2015 09:57:16 +0200 Subject: [PATCH] http: removed self assignment Follow-up fix from b0143a2a33f0 Detected by coverity. CID 1299429 --- lib/http.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/http.c b/lib/http.c index 274516028..ef55364ee 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1475,8 +1475,6 @@ CURLcode Curl_http_done(struct connectdata *conn, #endif /* set the proper values (possibly modified on POST) */ - data->set.fread_func = data->set.fread_func; /* restore */ - data->set.in = data->set.in; /* restore */ conn->seek_func = data->set.seek_func; /* restore */ conn->seek_client = data->set.seek_client; /* restore */ -- 2.50.1