1. 17 12月, 2015 2 次提交
  2. 03 9月, 2015 1 次提交
  3. 26 8月, 2015 1 次提交
  4. 24 6月, 2015 1 次提交
  5. 14 5月, 2015 1 次提交
  6. 01 5月, 2015 2 次提交
  7. 29 4月, 2015 1 次提交
  8. 23 4月, 2015 1 次提交
    • L
      Fix CRYPTO_strdup · 8031d26b
      Loganaden Velvindron 提交于
      The function CRYPTO_strdup (aka OPENSSL_strdup) fails to check the return
      value from CRYPTO_malloc to see if it is NULL before attempting to use it.
      This patch adds a NULL check.
      
      RT3786
      Signed-off-by: NMatt Caswell <matt@openssl.org>
      (cherry picked from commit 37b0cf936744d9edb99b5dd82cae78a7eac6ad60)
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (cherry picked from commit 20d21389c8b6f5b754573ffb6a4dc4f3986f2ca4)
      8031d26b
  9. 22 1月, 2015 1 次提交
  10. 11 11月, 2014 1 次提交
  11. 04 6月, 2012 1 次提交
  12. 20 4月, 2012 1 次提交
  13. 12 4月, 2011 1 次提交
  14. 01 4月, 2011 1 次提交
  15. 27 1月, 2011 1 次提交
  16. 12 11月, 2008 1 次提交
  17. 03 11月, 2008 1 次提交
  18. 01 11月, 2008 1 次提交
  19. 27 10月, 2008 1 次提交
  20. 15 5月, 2007 1 次提交
  21. 01 12月, 2003 1 次提交
  22. 07 10月, 2003 1 次提交
  23. 19 2月, 2003 1 次提交
  24. 28 11月, 2002 1 次提交
  25. 27 11月, 2002 1 次提交
  26. 13 11月, 2002 1 次提交
  27. 01 8月, 2002 1 次提交
  28. 11 1月, 2001 2 次提交
  29. 10 1月, 2001 2 次提交
  30. 14 12月, 2000 1 次提交
  31. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  32. 02 5月, 2000 1 次提交
    • R
      In Message-ID: <003201bfb332$14a07520$0801a8c0@janm.transactionsite.com>, · 65962686
      Richard Levitte 提交于
      "Jan Mikkelsen" <janm@transactionsite.com> correctly states that the
      OpenSSL header files have #include's and extern "C"'s in an incorrect
      order.  Thusly fixed.
      
      Also, make the memory debugging routines defined and declared with
      prototypes, and use void* instead of char* for memory blobs.
      
      And last of all, redo the ugly callback construct for elegance and
      better definition (with prototypes).
      65962686
  33. 11 2月, 2000 1 次提交
  34. 31 1月, 2000 1 次提交
  35. 20 12月, 1999 1 次提交
  36. 18 12月, 1999 1 次提交
    • B
      - Don't assume that int and size_t have the same representation · 0cd08cce
      Bodo Möller 提交于
        (and that malloc can be called with an int argument).
      - Use proper prototypes (with argument list) for various function pointers,
        avoid casts  (however there are still many such cases left in these files).
      - Avoid collissions in app_info_cmp if sizeof int != sizeof long.
      - Use CRYPTO_LOCK_MALLOC in mem_dbg.c.
      0cd08cce