diff options
author | Ben Winslow <rain@bluecherry.net> | 2011-07-22 22:50:58 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-07-22 22:50:58 +0200 |
commit | 27b8814017a19009b22e4b51aea1ae711ec20459 (patch) | |
tree | 60e770b469d1d67a7167af27cbf094ccea93787d /lib/progress.c | |
parent | dcc8481a13adc64661cd942d9c4009743ffdd620 (diff) | |
download | curl-27b8814017a19009b22e4b51aea1ae711ec20459.tar.gz |
progress: reset flags at transfer start
When an easy handle is used to download an URI which has no
Content-Length header (or equivalent) after downloading an URI which
does, the value from the previous transfer is reused and returned by
CURLINFO_CONTENT_LENGTH_DOWNLOAD. This is because the progress flags
(used to determine whether such a header was received) are not reset
between transfers.
Bug: http://curl.haxx.se/bug/view.cgi?id=3370895
Diffstat (limited to 'lib/progress.c')
-rw-r--r-- | lib/progress.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/progress.c b/lib/progress.c index 8655dc4c2..9f20a0068 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -201,6 +201,7 @@ void Curl_pgrsStartNow(struct SessionHandle *data) { data->progress.speeder_c = 0; /* reset the progress meter display */ data->progress.start = Curl_tvnow(); + data->progress.flags = 0; } void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size) |