Skip to content
  1. May 10, 2014
  2. May 09, 2014
  3. May 08, 2014
  4. May 07, 2014
  5. May 06, 2014
  6. May 05, 2014
  7. May 04, 2014
    • Daniel Stenberg's avatar
      schannel: don't use the connect-timeout during send · a18a2ba0
      Daniel Stenberg authored
      As there's a default connection timeout and this wrongly used the
      connection timeout during a transfer after the connection is completed,
      this function would trigger timeouts during transfers erroneously.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=1352
      Figured-out-by: Radu Simionescu
      a18a2ba0
    • Daniel Stenberg's avatar
      mprintf: allow %.s with data not being zero terminated · 812da419
      Daniel Stenberg authored
      If the precision is indeed shorter than the string, don't strlen() to
      find the end because that's not how the precision operator works.
      
      I also added a unit test for curl_msnprintf to make sure this works and
      that the fix doesn't a few other basic use cases. I found a POSIX
      compliance problem that I marked TODO in the unit test, and I figure we
      need to add more tests in the future.
      
      Reported-by: Török Edwin
      812da419