1. 24 Jun, 2012 3 commits
  2. 22 Jun, 2012 3 commits
  3. 21 Jun, 2012 8 commits
  4. 20 Jun, 2012 7 commits
  5. 19 Jun, 2012 12 commits
  6. 18 Jun, 2012 4 commits
  7. 16 Jun, 2012 1 commit
  8. 15 Jun, 2012 2 commits
    • Daniel Stenberg's avatar
      Curl_rtsp_parseheader: avoid useless malloc/free · 220776de
      Daniel Stenberg authored
      Coverity actually pointed out flawed logic in the previous call to
      Curl_strntoupper() where the code used sizeof() of a pointer to pass in
      a size argument. That code still worked since it only needed to
      uppercase 4 letters. Still, the entire malloc/uppercase/free sequence
      was pointless since the code has already matched the string once in the
      condition that starts the block of code.
      220776de
    • Daniel Stenberg's avatar
      curl_share_setopt: use va_end() · 3da2c0f6
      Daniel Stenberg authored
      As spotted by Coverity, va_end() was not used previously. To make it
      used I took away a bunch of return statements and made them into
      assignments instead.
      3da2c0f6