1. 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
  2. 08 1月, 2016 1 次提交
  3. 18 12月, 2015 1 次提交
  4. 10 11月, 2015 1 次提交
  5. 03 9月, 2015 1 次提交
  6. 06 5月, 2015 1 次提交
  7. 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
  8. 02 5月, 2015 1 次提交
    • R
      free NULL cleanup -- coda · 25aaa98a
      Rich Salz 提交于
      After the finale, the "real" final part. :)  Do a recursive grep with
      "-B1 -w [a-zA-Z0-9_]*_free" to see if any of the preceeding lines are
      an "if NULL" check that can be removed.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      25aaa98a
  9. 01 5月, 2015 1 次提交
  10. 29 4月, 2015 1 次提交
  11. 22 1月, 2015 2 次提交
  12. 19 2月, 2009 1 次提交
  13. 16 12月, 2008 1 次提交
  14. 04 6月, 2008 1 次提交
  15. 11 5月, 2005 1 次提交
    • B
      Fix more error codes. · 8afca8d9
      Bodo Möller 提交于
      (Also improve util/ck_errf.pl script, and occasionally
      fix source code formatting.)
      8afca8d9
  16. 26 6月, 2003 1 次提交
    • R
      Implement missing functions. · ed5fae58
      Richard Levitte 提交于
      Have the f parameter to _ctrl functions have the prototype (*)(void)
      rather than (*)(), for the sake of C++ compilers.
      Disable unimplemented functionality.
      ed5fae58
  17. 13 6月, 2003 1 次提交
  18. 08 5月, 2003 1 次提交
  19. 01 5月, 2003 2 次提交