1. 14 5月, 2015 9 次提交
  2. 13 5月, 2015 15 次提交
  3. 12 5月, 2015 2 次提交
  4. 11 5月, 2015 5 次提交
  5. 09 5月, 2015 1 次提交
  6. 08 5月, 2015 1 次提交
  7. 07 5月, 2015 5 次提交
  8. 06 5月, 2015 2 次提交
    • D
      SSL_CONF table reorganisation. · 656b2605
      Dr. Stephen Henson 提交于
      Add command line switch entries to table and return SSL_CONF_TYPE_NONE for
      them in SSL_CONF_cmd_value_type.
      
      Update docs.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      656b2605
    • 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