1. 26 5月, 2017 1 次提交
  2. 22 3月, 2017 1 次提交
  3. 29 6月, 2016 1 次提交
  4. 18 5月, 2016 1 次提交
  5. 12 5月, 2016 1 次提交
  6. 09 5月, 2016 1 次提交
  7. 10 12月, 2015 2 次提交
  8. 03 12月, 2015 1 次提交
  9. 02 12月, 2015 2 次提交
  10. 10 11月, 2015 1 次提交
  11. 06 5月, 2015 1 次提交
  12. 05 5月, 2015 1 次提交
    • 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
  13. 01 5月, 2015 1 次提交
    • R
      free cleanup almost the finale · 4b45c6e5
      Rich Salz 提交于
      Add OPENSSL_clear_free which merges cleanse and free.
      (Names was picked to be similar to BN_clear_free, etc.)
      Removed OPENSSL_freeFunc macro.
      Fixed the small simple ones that are left:
              CRYPTO_free CRYPTO_free_locked OPENSSL_free_locked
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b45c6e5
  14. 29 4月, 2015 1 次提交
  15. 28 1月, 2015 1 次提交
  16. 22 1月, 2015 1 次提交
  17. 08 12月, 2014 2 次提交