1. 18 Oct, 2009 5 commits
  2. 17 Oct, 2009 3 commits
  3. 16 Oct, 2009 1 commit
  4. 15 Oct, 2009 1 commit
  5. 14 Oct, 2009 2 commits
  6. 13 Oct, 2009 2 commits
  7. 10 Oct, 2009 2 commits
    • Yang Tse's avatar
      · 4d9279cb
      Yang Tse authored
      Fix potential out-of-bounds read
      4d9279cb
    • Yang Tse's avatar
      · 640e4997
      Yang Tse authored
      Fix compiler warning: loop without body
      640e4997
  8. 09 Oct, 2009 1 commit
  9. 08 Oct, 2009 4 commits
  10. 07 Oct, 2009 3 commits
  11. 06 Oct, 2009 4 commits
  12. 05 Oct, 2009 1 commit
  13. 01 Oct, 2009 4 commits
  14. 29 Sep, 2009 1 commit
  15. 28 Sep, 2009 4 commits
  16. 27 Sep, 2009 2 commits
    • Daniel Stenberg's avatar
      tiny indent fix · 0ea6abe7
      Daniel Stenberg authored
      0ea6abe7
    • Daniel Stenberg's avatar
      - I introduced a maximum limit for received HTTP headers. It is controlled by · 8646cecb
      Daniel Stenberg authored
        the define CURL_MAX_HTTP_HEADER which is even exposed in the public header
        file to allow for users to fairly easy rebuild libcurl with a modified
        limit. The rationale for a fixed limit is that libcurl is realloc()ing a
        buffer to be able to put a full header into it, so that it can call the
        header callback with the entire header, but that also risk getting it into
        trouble if a server by mistake or willingly sends a header that is more or
        less without an end. The limit is set to 100K.
      8646cecb