1. 24 1月, 2016 2 次提交
  2. 10 11月, 2015 1 次提交
  3. 05 10月, 2015 1 次提交
  4. 17 9月, 2015 1 次提交
    • D
      New ASN.1 embed macro. · de17bd5d
      Dr. Stephen Henson 提交于
      New ASN.1 macro ASN1_EMBED. This is the same as ASN1_SIMPLE except the
      structure is not allocated: it is part of the parent. That is instead of
      
      FOO *x;
      
      it must be:
      
      FOO x;
      
      This reduces memory fragmentation and make it impossible to accidentally
      set a mandatory field to NULL.
      
      This currently only works for SEQUENCE and since it is equivalent to
      ASN1_SIMPLE it cannot be tagged, OPTIONAL, SET OF or SEQUENCE OF.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      de17bd5d
  5. 15 9月, 2015 1 次提交
  6. 06 5月, 2015 1 次提交
    • G
      Initialize potentially uninitialized local variables · 4c9b0a03
      Gunnar Kudrjavets 提交于
      Compiling OpenSSL code with MSVC and /W4 results in a number of warnings.
      One category of warnings is particularly interesting - C4701 (potentially
      uninitialized local variable 'name' used). This warning pretty much means
      that there's a code path which results in uninitialized variables being used
      or returned. Depending on compiler, its options, OS, values in registers
      and/or stack, the results can be nondeterministic. Cases like this are very
      hard to debug so it's rational to fix these issues.
      
      This patch contains a set of trivial fixes for all the C4701 warnings (just
      initializing variables to 0 or NULL or appropriate error code) to make sure
      that deterministic values will be returned from all the execution paths.
      
      RT#3835
      Signed-off-by: NMatt Caswell <matt@openssl.org>
      
      Matt's note: All of these appear to be bogus warnings, i.e. there isn't
      actually a code path where an unitialised variable could be used - its just
      that the compiler hasn't been able to figure that out from the logic. So
      this commit is just about silencing spurious warnings.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      4c9b0a03
  7. 01 5月, 2015 1 次提交
  8. 28 3月, 2015 1 次提交
  9. 26 3月, 2015 1 次提交
  10. 25 3月, 2015 1 次提交
  11. 24 3月, 2015 1 次提交
  12. 19 3月, 2015 1 次提交
  13. 29 1月, 2015 1 次提交
  14. 22 1月, 2015 2 次提交
  15. 17 12月, 2014 1 次提交
  16. 12 6月, 2010 1 次提交
  17. 25 3月, 2009 2 次提交
  18. 15 3月, 2009 1 次提交
  19. 12 11月, 2008 1 次提交
  20. 06 11月, 2008 1 次提交
  21. 01 11月, 2008 1 次提交
  22. 04 6月, 2008 1 次提交
  23. 24 1月, 2007 1 次提交
  24. 16 11月, 2006 1 次提交
  25. 28 9月, 2006 1 次提交
  26. 01 9月, 2006 1 次提交
  27. 19 2月, 2006 1 次提交
  28. 09 2月, 2006 1 次提交
  29. 01 2月, 2006 1 次提交
  30. 30 1月, 2006 1 次提交
  31. 02 9月, 2005 1 次提交
  32. 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
  33. 01 5月, 2005 2 次提交
  34. 30 4月, 2005 1 次提交
  35. 28 4月, 2004 1 次提交
  36. 25 4月, 2004 1 次提交