Skip to content
  1. Jul 04, 2011
  2. Jul 03, 2011
  3. Jul 01, 2011
  4. Jun 30, 2011
  5. Jun 29, 2011
  6. Jun 28, 2011
  7. Jun 27, 2011
  8. Jun 24, 2011
    • Dan Fandrich's avatar
      78480892
    • Dan Fandrich's avatar
      Display notes from setup file in testcurl.pl · 17a2d70d
      Dan Fandrich authored
      Autobuild submitters can use this to add some text to their
      setup files to describe issues they've found with the build
      or tests. This could include laying blame on test failures on
      network issues or dependent libraries, explaining away compiler
      warnings or providing any additional information that could be
      useful to people reviewing and investigating problems with the
      publicly available autobuild logs.  Note that persistent test
      failures that are not issues with curl itself should normally be
      fixed by excluding them from the test run instead.
      
      This is an entirely optional field that is not entered by the
      user the first time a new build is created.
      17a2d70d
    • Dan Fandrich's avatar
      Added a leap second test to test517 · 43ce5580
      Dan Fandrich authored
      43ce5580
  9. Jun 23, 2011
  10. Jun 22, 2011
  11. Jun 21, 2011
  12. Jun 20, 2011
  13. Jun 19, 2011
    • Amr Shahin's avatar
      unitteset: Curl_llist_move · c9f16e67
      Amr Shahin authored
      adding unit test for Curl_llist_move, documenting unit-tested functions
      in llist.c, changing unit-test to unittest, replacing assert calls with
      abort_unless calls
      c9f16e67
  14. Jun 17, 2011
  15. Jun 14, 2011
  16. Jun 13, 2011
    • Daniel Stenberg's avatar
      curl_formget: fix FILE * leak · 0aedccc1
      Daniel Stenberg authored
      Properly deal with the fact that the last fread() call most probably is
      a short read, and when using callbacks in fact all calls can be short
      reads. No longer consider a file read done until it returns a 0 from the
      read function.
      
      Reported by: Aaron Orenstein
      Bug: http://curl.haxx.se/mail/lib-2011-06/0048.html
      0aedccc1
    • Daniel Stenberg's avatar
      curl_formget: treat CURLFORM_STREAM better · 85881f9f
      Daniel Stenberg authored
      If a piece is set to use a callback to get the data, it should not be
      treated as data. It unfortunately also requires that curl_easy_perform()
      or similar has been used as otherwise the callback function hasn't been
      figured out and curl_formget won't know how to get the content.
      85881f9f