1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 20 6月, 2017 1 次提交
  6. 16 6月, 2017 1 次提交
  7. 18 7月, 2016 1 次提交
  8. 17 7月, 2016 2 次提交
  9. 16 7月, 2016 1 次提交
  10. 18 5月, 2016 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. 22 1月, 2015 1 次提交
  14. 29 11月, 2014 1 次提交
  15. 04 9月, 2014 2 次提交
  16. 23 10月, 2006 1 次提交
  17. 24 9月, 2004 1 次提交
    • R
      Import changed files from LPlib. The changes are logged as follows · bb09fd2b
      Richard Levitte 提交于
      for LPdir_unix.c in LPlib.  For the other files, only the last log
      entry applies.
      
      ----------------------------
      revision 1.11
      date: 2004/09/23 22:07:22;  author: _cvs_levitte;  state: Exp;  lines: +20 -6
      Define my own macro LP_ENTRY_SIZE to express the size of my own
      buffering of directory entries, and make it depend on whichever comes
      first of PATH_MAX and NAME_MAX.  As a fallback, make sure it's set to
      255 if neither PATH_MAX or NAME_MAX were defined.  Also, if the size
      given from PATH_MAX or NAME_MAX is less than 255, force LP_ENTRY_SIZE
      to be 255.
      
      It makes no harm whatsoever if LP_ENTRY_SIZE is larger than the
      maximum local path name limit.  It does make a lot of harm if
      LP_ENTRY_SIZE is smaller.  255 seemed like a fairly acceptable default
      when nothing else is available.
      ----------------------------
      revision 1.10
      date: 2004/08/26 13:36:05;  author: _cvs_levitte;  state: Exp;  lines: +13 -13
      License correction.  I am not REGENTS, just a COPYRIGHT HOLDER.
      ----------------------------
      bb09fd2b
  18. 26 7月, 2004 1 次提交
  19. 23 7月, 2004 1 次提交
    • R
      From LPlib: · f744f92a
      Richard Levitte 提交于
      Apparently, the length *including* the NUL byte should be used.
      
      Contributed by Andy Polyakov <appro@fy.chalmers.se>
      f744f92a
  20. 22 7月, 2004 2 次提交
    • R
      From LPlib: · 75f134c0
      Richard Levitte 提交于
      Make a nicer comment, as we don't really know for sure that it's
      really needed, and just want to play on the safe side.
      
      Suggest by Andy Polyakov <appro@fy.chalmers.se>
      75f134c0
    • R
      From LPlib: · 765e231a
      Richard Levitte 提交于
      Some code beautification.
      
      Change the macro CP_THREAD_ACP to CP_ACP, because the latter is more
      widely defined.
      
      Add a conditional macro definition in case FindFirstFile and
      FindNextFile aren't properly defined (might happen on WinCE).
      
      Suggested by Andy Polyakov <appro@fy.chalmers.se>
      765e231a
  21. 21 7月, 2004 1 次提交
    • R
      From LPlib: · 64ba6cf2
      Richard Levitte 提交于
      Windows changes that detects if multibyte characters are available and
      deals with them properly.
      
      Contributed by Andy Polyakov <appro@fy.chalmers.se>
      64ba6cf2
  22. 20 7月, 2004 1 次提交
  23. 10 7月, 2004 1 次提交