1. 16 May, 2012 1 commit
  2. 14 May, 2012 2 commits
  3. 12 May, 2012 5 commits
  4. 06 May, 2012 1 commit
  5. 03 May, 2012 1 commit
  6. 02 May, 2012 1 commit
    • Gokhan Sengun's avatar
      MD5: OOM fix · d6773834
      Gokhan Sengun authored
      check whether md5 initialization succeeded before updating digest of
      buffers onto it
      d6773834
  7. 29 Apr, 2012 1 commit
  8. 27 Apr, 2012 2 commits
  9. 26 Apr, 2012 1 commit
  10. 23 Apr, 2012 10 commits
  11. 22 Apr, 2012 5 commits
  12. 20 Apr, 2012 2 commits
  13. 19 Apr, 2012 2 commits
  14. 18 Apr, 2012 4 commits
  15. 17 Apr, 2012 1 commit
  16. 16 Apr, 2012 1 commit
    • Daniel Stenberg's avatar
      -# progress meter: avoid superfluous updates and duplicate lines · 4d28a59f
      Daniel Stenberg authored
      By comparing if a different "progress point" is reached or not since the
      previous update, the progress function callback for this now avoids many
      superfluous screen updates. This has the nice side-effect that it fixes
      a problem that causes a second progress meter line.
      
      The second line output happened because when we use the -# progress
      meter, we force a newline output after the transfer in the main loop in
      curl, but when libcurl calls the progress callback from
      curl_easy_cleanup() it would then output the progress display
      again. Possibly the naive newline output is wrong but this optimization
      was suitable anyway...
      
      Reported by: Daniel Theron
      Bug: http://curl.haxx.se/bug/view.cgi?id=3517418
      4d28a59f