1. 18 Dec, 2007 2 commits
  2. 17 Dec, 2007 1 commit
  3. 13 Dec, 2007 1 commit
    • Daniel Stenberg's avatar
      David Wright filed bug report #1849764 · 7b1a2214
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He
      identified a problem for re-used connections that previously had sent
      Expect: 100-continue and in some situations the subsequent POST (that didn't
      use Expect:) still had the internal flag set for its use. David's fix (that
      makes the setting of the flag in every single request unconditionally) is
      fine and is now used!
      7b1a2214
  4. 12 Dec, 2007 1 commit
  5. 09 Dec, 2007 1 commit
  6. 05 Dec, 2007 1 commit
  7. 03 Dec, 2007 3 commits
  8. 02 Dec, 2007 1 commit
  9. 29 Nov, 2007 1 commit
  10. 22 Nov, 2007 2 commits
  11. 20 Nov, 2007 2 commits
  12. 18 Nov, 2007 1 commit
  13. 15 Nov, 2007 1 commit
  14. 14 Nov, 2007 1 commit
  15. 12 Nov, 2007 1 commit
    • Daniel Stenberg's avatar
      Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was · c5b16d44
      Daniel Stenberg authored
      forwarded from the Gentoo bug tracker by Daniel Black and was originally
      submitted by Robin Johnson, pointed out that libcurl would do bad memory
      references when it failed and bailed out before the handler thing was
      setup. My fix is not done like the provided patch does it, but instead I
      make sure that there's never any chance for a NULL pointer in that struct
      member.
      c5b16d44
  16. 11 Nov, 2007 1 commit
  17. 08 Nov, 2007 1 commit
  18. 06 Nov, 2007 1 commit
  19. 05 Nov, 2007 1 commit
  20. 01 Nov, 2007 2 commits
  21. 31 Oct, 2007 2 commits
  22. 29 Oct, 2007 3 commits
  23. 28 Oct, 2007 1 commit
  24. 25 Oct, 2007 5 commits
  25. 24 Oct, 2007 1 commit
  26. 23 Oct, 2007 1 commit
  27. 22 Oct, 2007 1 commit
    • Daniel Stenberg's avatar
      Michal Marek forwarded the bug report · 5b358603
      Daniel Stenberg authored
      https://bugzilla.novell.com/show_bug.cgi?id=332917 about a HTTP redirect to
      FTP that caused memory havoc. His work together with my efforts created two
      fixes:
      
      #1 - FTP::file was moved to struct ftp_conn, because is has to be dealt with
           at connection cleanup, at which time the struct HandleData could be
           used by another connection.
           Also, the unused char *urlpath member is removed from struct FTP.
      
      #2 - provide a Curl_reset_reqproto() function that frees
           data->reqdata.proto.* on connection setup if needed (that is if the
           SessionHandle was used by a different connection).
      5b358603