Skip to content
  1. Nov 20, 2015
  2. Nov 19, 2015
  3. Nov 18, 2015
  4. Nov 17, 2015
  5. Nov 16, 2015
  6. Nov 15, 2015
  7. Nov 14, 2015
  8. Nov 13, 2015
  9. Nov 11, 2015
  10. Nov 10, 2015
  11. Nov 09, 2015
    • Matt Caswell's avatar
      Remove redundant check from tls1_get_curvelist · 6329b609
      Matt Caswell authored
      
      
      The function tls1_get_curvelist() has an explicit check to see if s->cert
      is NULL or not. However the check appears *after* calling the tls1_suiteb
      macro which derefs s->cert. In reality s->cert can never be NULL because
      it is created in SSL_new(). If the malloc fails then the SSL_new call fails
      and no SSL object is created.
      
      Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
      6329b609