1. 06 4月, 2016 1 次提交
  2. 31 3月, 2016 1 次提交
  3. 30 3月, 2016 1 次提交
  4. 23 3月, 2016 1 次提交
  5. 21 3月, 2016 2 次提交
  6. 19 3月, 2016 1 次提交
  7. 09 3月, 2016 2 次提交
  8. 08 3月, 2016 2 次提交
  9. 03 3月, 2016 1 次提交
  10. 27 2月, 2016 1 次提交
  11. 20 2月, 2016 1 次提交
    • R
      Always build library object files with shared library cflags · 45502bfe
      Richard Levitte 提交于
      This takes us away from the idea that we know exactly how our static
      libraries are going to get used.  Instead, we make them available to
      build shareable things with, be it other shared libraries or DSOs.
      
      On the other hand, we also have greater control of when the shared
      library cflags.  They will never be used with object files meant got
      binaries, such as apps/openssl or test/test*.
      
      With unified, we take this a bit further and prepare for having to
      deal with extra cflags specifically to be used with DSOs (dynamic
      engines), libraries and binaries (applications).
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      45502bfe
  12. 19 2月, 2016 1 次提交
  13. 17 2月, 2016 1 次提交
  14. 12 2月, 2016 1 次提交
  15. 11 2月, 2016 2 次提交
  16. 10 2月, 2016 1 次提交
  17. 09 2月, 2016 1 次提交
  18. 04 2月, 2016 3 次提交
  19. 01 2月, 2016 1 次提交
  20. 30 1月, 2016 1 次提交
  21. 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
  22. 20 1月, 2016 1 次提交
  23. 18 1月, 2016 1 次提交
  24. 13 1月, 2016 1 次提交
  25. 12 1月, 2016 4 次提交
  26. 11 1月, 2016 1 次提交
  27. 08 1月, 2016 1 次提交
  28. 24 12月, 2015 1 次提交
    • K
      Avoid using a dangling pointer when removing the last item · 933d1085
      Kurt Roeckx 提交于
      When it's the last item that is removed int_thread_hash == hash and we would
      still call int_thread_release(&hash) while hash is already freed.  So
      int_thread_release would compare that dangling pointer to NULL which is
      undefined behaviour.  Instead do already what int_thread_release() would do,
      and make the call do nothing instead.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      
      RT: #4155, MR: #1519
      933d1085
  29. 22 12月, 2015 1 次提交
  30. 17 12月, 2015 1 次提交
    • R
      Rename some BUF_xxx to OPENSSL_xxx · 7644a9ae
      Rich Salz 提交于
      Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      Add #define's for the old names.
      Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      7644a9ae
  31. 10 12月, 2015 1 次提交