diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-22 09:57:16 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-22 09:57:16 +0200 |
commit | d04bab8873e45a59d71e146409035ba151bc877a (patch) | |
tree | c01647ccf0fb4ebb0f976a5cc2153e74c048e577 | |
parent | 640f283bbb4f503097232f2c85f0a80aa39dd044 (diff) |
http: removed self assignment
Follow-up fix from b0143a2a33f0
Detected by coverity. CID 1299429
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 0 insertions, 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 */ |