Skip to content
  1. Apr 08, 2013
  2. Apr 07, 2013
  3. Apr 06, 2013
  4. Apr 05, 2013
    • Daniel Stenberg's avatar
      Curl_open: restore default MAXCONNECTS to 5 · e7c56a84
      Daniel Stenberg authored
      At some point recently we lost the default value for the easy handle's
      connection cache, and this change puts it back to 5 - which is the
      former default value and it is documented in the curl_easy_setopt.3 man
      page.
      e7c56a84
  5. Apr 04, 2013
  6. Apr 03, 2013
  7. Apr 02, 2013
  8. Mar 31, 2013
  9. Mar 29, 2013
  10. Mar 25, 2013
    • Yang Tse's avatar
      NTLM: fix several NTLM code paths memory leaks · acafe9c1
      Yang Tse authored
      acafe9c1
    • Yang Tse's avatar
      WIN32 MemoryTracking: track wcsdup() _wcsdup() and _tcsdup() usage · 8ec2cb55
      Yang Tse authored
      As of 25-mar-2013 wcsdup() _wcsdup() and _tcsdup() are only used in
      WIN32 specific code, so tracking of these has not been extended for
      other build targets. Without this fix, memory tracking system on
      WIN32 builds, when using these functions, would provide misleading
      results.
      
      In order to properly extend this support for all targets curl.h
      would have to define curl_wcsdup_callback prototype and consequently
      wchar_t should be visible before that in curl.h.  IOW curl_wchar_t
      defined in curlbuild.h and this pulling whatever system header is
      required to get wchar_t definition.
      
      Additionally a new curl_global_init_mem() function that also receives
      user defined wcsdup() callback would be required.
      8ec2cb55
    • Yang Tse's avatar
      curl_ntlm_msgs.c: revert commit 463082be · c5eabd48
      Yang Tse authored
      reverts unreleased invalid memory leak fix
      c5eabd48
  11. Mar 23, 2013
  12. Mar 21, 2013
  13. Mar 20, 2013
  14. Mar 19, 2013
  15. Mar 18, 2013
  16. Mar 17, 2013
  17. Mar 15, 2013
    • Daniel Stenberg's avatar
      HTTP proxy: insert slash in URL if missing · e4b733e3
      Daniel Stenberg authored
      curl has been accepting URLs using slightly wrong syntax for a long
      time, such as when completely missing as slash "http://example.org" or
      missing a slash when a query part is given
      "http://example.org?q=foobar".
      
      curl would translate these into a legitimate HTTP request to servers,
      although as was shown in bug #1206 it was not adjusted properly in the
      cases where a HTTP proxy was used.
      
      Test 1213 and 1214 were added to the test suite to verify this fix.
      
      The test HTTP server was adjusted to allow us to specify test number in
      the host name only without using any slashes in a given URL.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1206
      Reported by: ScottJi
      e4b733e3