1. 25 Jun, 2012 1 commit
  2. 24 Jun, 2012 3 commits
  3. 22 Jun, 2012 3 commits
  4. 21 Jun, 2012 8 commits
  5. 20 Jun, 2012 7 commits
  6. 19 Jun, 2012 12 commits
  7. 18 Jun, 2012 4 commits
  8. 16 Jun, 2012 1 commit
  9. 15 Jun, 2012 1 commit
    • 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