1. 27 12月, 2017 1 次提交
  2. 08 12月, 2017 1 次提交
  3. 02 10月, 2017 1 次提交
  4. 26 6月, 2017 1 次提交
  5. 18 11月, 2016 1 次提交
  6. 18 5月, 2016 1 次提交
  7. 09 3月, 2016 1 次提交
  8. 02 3月, 2016 1 次提交
  9. 29 2月, 2016 1 次提交
  10. 23 2月, 2016 1 次提交
  11. 10 2月, 2016 1 次提交
  12. 06 2月, 2016 1 次提交
  13. 29 1月, 2016 1 次提交
  14. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  15. 14 1月, 2016 3 次提交
  16. 10 11月, 2015 1 次提交
  17. 29 5月, 2015 1 次提交
  18. 06 5月, 2015 1 次提交
  19. 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
  20. 01 5月, 2015 3 次提交
  21. 29 4月, 2015 1 次提交
  22. 20 4月, 2015 1 次提交
  23. 12 4月, 2015 1 次提交
    • R
      free NULL cleanup 9 · e0e920b1
      Rich Salz 提交于
      Ongoing work to skip NULL check before calling free routine.  This gets:
          ecp_nistz256_pre_comp_free nistp224_pre_comp_free nistp256_pre_comp_free
          nistp521_pre_comp_free PKCS7_free PKCS7_RECIP_INFO_free
          PKCS7_SIGNER_INFO_free sk_PKCS7_pop_free PKCS8_PRIV_KEY_INFO_free
          PKCS12_free PKCS12_SAFEBAG_free PKCS12_free sk_PKCS12_SAFEBAG_pop_free
          SSL_CONF_CTX_free SSL_CTX_free SSL_SESSION_free SSL_free ssl_cert_free
          ssl_sess_cert_free
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      e0e920b1
  24. 26 3月, 2015 1 次提交
  25. 22 1月, 2015 5 次提交
  26. 06 1月, 2015 1 次提交
  27. 31 12月, 2014 1 次提交
  28. 17 12月, 2014 1 次提交
    • E
      Build fixes · b597aab8
      Emilia Kasper 提交于
      Various build fixes, mostly uncovered by clang's unused-const-variable
      and unused-function errors.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      (cherry picked from commit 0e1c318ece3c82e96ae95a34a1badf58198d6b28)
      b597aab8
  29. 19 10月, 2011 2 次提交