1. 09 Oct, 2014 8 commits
  2. 08 Oct, 2014 7 commits
  3. 07 Oct, 2014 7 commits
  4. 06 Oct, 2014 2 commits
  5. 04 Oct, 2014 6 commits
  6. 03 Oct, 2014 7 commits
  7. 02 Oct, 2014 3 commits
    • Daniel Stenberg's avatar
      detect_proxy: fix possible single-byte memory leak · b85c625d
      Daniel Stenberg authored
      Coverity CID 1202836. If the proxy environment variable returned an empty
      string, it would be leaked. While an empty string is not really a proxy, other
      logic in this function already allows a blank string to be returned so allow
      that here to avoid the leak.
      b85c625d
    • Daniel Stenberg's avatar
      multi_runsingle: fix memory leak · 0d357155
      Daniel Stenberg authored
      Coverity CID 1202837. There's a potential risk that 'newurl' gets
      overwritten when it was already pointing to allocated memory.
      0d357155
    • Daniel Stenberg's avatar
      pop3_perform_authentication: fix memory leak · ea6c5f03
      Daniel Stenberg authored
      Coverity CID 1215287. There's a potential risk for a memory leak in
      here, and moving the free call to be unconditional seems like a cheap
      price to remove the risk.
      ea6c5f03