Skip to content
  1. Jun 15, 2014
  2. Jun 13, 2014
  3. Jun 12, 2014
  4. Jun 11, 2014
  5. Jun 10, 2014
  6. Jun 09, 2014
  7. Jun 06, 2014
  8. Jun 05, 2014
  9. Jun 04, 2014
  10. Jun 03, 2014
  11. Jun 02, 2014
  12. Jun 01, 2014
  13. May 29, 2014
  14. May 28, 2014
  15. May 27, 2014
  16. May 26, 2014
  17. May 25, 2014
  18. May 24, 2014
  19. May 23, 2014
    • Daniel Stenberg's avatar
      configure: detect nghttp2 by default · 2ddd69ef
      Daniel Stenberg authored
      2ddd69ef
    • Tatsuhiro Tsujikawa's avatar
      openssl: Fix uninitialized variable use in NPN callback · c7638d93
      Tatsuhiro Tsujikawa authored
      OpenSSL passes out and outlen variable uninitialized to
      select_next_proto_cb callback function.  If the callback function
      returns SSL_TLSEXT_ERR_OK, the caller assumes the callback filled
      values in out and outlen and processes as such.  Previously, if there
      is no overlap in protocol lists, curl code does not fill any values in
      these variables and returns SSL_TLSEXT_ERR_OK, which means we are
      triggering undefined behavior.  valgrind warns this.
      
      This patch fixes this issue by fallback to HTTP/1.1 if there is no
      overlap.
      c7638d93