Skip to content
  1. Sep 11, 2011
  2. Sep 10, 2011
  3. Sep 09, 2011
  4. Sep 08, 2011
  5. Sep 07, 2011
  6. Sep 06, 2011
  7. Sep 05, 2011
  8. Sep 04, 2011
  9. Sep 03, 2011
  10. Sep 02, 2011
    • 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