1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 09 7月, 2018 2 次提交
  7. 08 6月, 2018 1 次提交
  8. 17 4月, 2018 1 次提交
  9. 06 4月, 2018 1 次提交
  10. 26 5月, 2017 1 次提交
  11. 22 3月, 2017 1 次提交
  12. 29 6月, 2016 1 次提交
  13. 18 5月, 2016 1 次提交
  14. 12 5月, 2016 1 次提交
  15. 09 5月, 2016 1 次提交
  16. 10 12月, 2015 2 次提交
  17. 03 12月, 2015 1 次提交
  18. 02 12月, 2015 2 次提交
  19. 10 11月, 2015 1 次提交
  20. 06 5月, 2015 1 次提交
  21. 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
  22. 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
  23. 29 4月, 2015 1 次提交
  24. 28 1月, 2015 1 次提交
  25. 22 1月, 2015 1 次提交
  26. 08 12月, 2014 2 次提交