Skip to content
  1. Jun 24, 2012
  2. Jun 22, 2012
  3. Jun 21, 2012
  4. Jun 20, 2012
  5. Jun 19, 2012
  6. Jun 18, 2012
  7. Jun 16, 2012
  8. Jun 15, 2012
    • 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