1. 11 Sep, 2011 4 commits
  2. 10 Sep, 2011 2 commits
  3. 09 Sep, 2011 5 commits
  4. 08 Sep, 2011 3 commits
  5. 07 Sep, 2011 4 commits
  6. 06 Sep, 2011 5 commits
  7. 05 Sep, 2011 4 commits
  8. 04 Sep, 2011 5 commits
  9. 03 Sep, 2011 6 commits
  10. 02 Sep, 2011 2 commits
    • Dan Fandrich's avatar
      Fix NTLM winbind support to pass the torture tests · ded3638d
      Dan Fandrich authored
      Calling sclose() both in the child and the parent fools the
      socket leak detector into thinking it's been closed twice.
      Calling close() in the child instead overcomes this problem. It's
      not as portable as the sclose() macro, but this code is highly
      POSIX-specific, anyway.
      ded3638d
    • Yang Tse's avatar
      MemoryTracking: fix logging of free() calls done where Curl_safefree is called · 9194e170
      Yang Tse authored
      Just internal stuff...
      
      Curl_safefree is now a macro defined in memdebug.h instead of a function
      prototyped in url.h and implemented in url.c, so inclusion of url.h is no
      longer required in order to simply use Curl_safefree.
      
      Provide definition of macro WHILE_FALSE in setup_once.h in order to allow
      other macros such as DEBUGF and DEBUGASSERT, and code using it, to compile
      without 'conditional expression is constant' warnings.
      
      The WHILE_FALSE stuff fixes 150+ MSVC compiler warnings.
      9194e170