1. 22 9月, 2015 7 次提交
  2. 21 9月, 2015 4 次提交
  3. 20 9月, 2015 23 次提交
  4. 19 9月, 2015 4 次提交
  5. 18 9月, 2015 2 次提交
    • E
      Remove PACKET_back · 88f84eb2
      Emilia Kasper 提交于
      It's unused, and the same functionality can be achieved with saving a
      copy of the struct.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      88f84eb2
    • M
      Make sure OPENSSL_cleanse checks for NULL · 020d8fc8
      Matt Caswell 提交于
      In master we have the function OPENSSL_clear_free(x,y), which immediately
      returns if x == NULL. In <=1.0.2 this function does not exist so we have to
      do:
      OPENSSL_cleanse(x, y);
      OPENSSL_free(x);
      
      However, previously, OPENSSL_cleanse did not check that if x == NULL, so
      the real equivalent check would have to be:
      if (x != NULL)
          OPENSSL_cleanse(x, y);
      OPENSSL_free(x);
      
      It would be easy to get this wrong during cherry-picking to other branches
      and therefore, for safety, it is best to just ensure OPENSSL_cleanse also
      checks for NULL.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      020d8fc8