1. 14 5月, 2015 2 次提交
  2. 05 5月, 2015 2 次提交
    • M
      Remove libcrypto to libssl dependency · d13bd613
      Matt Caswell 提交于
      Remove dependency on ssl_locl.h from v3_scts.c, and incidentally fix a build problem with
      kerberos (the dependency meant v3_scts.c was trying to include krb5.h, but without having been
      passed the relevanant -I flags to the compiler)
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      d13bd613
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  3. 01 5月, 2015 2 次提交
  4. 24 3月, 2015 1 次提交
  5. 22 1月, 2015 2 次提交
  6. 31 12月, 2014 1 次提交
  7. 11 6月, 2014 1 次提交
  8. 25 2月, 2014 3 次提交
  9. 21 2月, 2014 2 次提交
  10. 19 2月, 2014 1 次提交
  11. 15 2月, 2014 1 次提交