openssl/crypto/pem
Gunnar Kudrjavets 4c9b0a0314 Initialize potentially uninitialized local variables
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: Matt 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: Rich Salz <rsalz@openssl.org>
2015-05-06 13:06:46 +01:00
..
Makefile Remove EXHEADER, TEST, APPS, links:, install: and uninstall: where relevant 2015-03-31 20:16:01 +02:00
message Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
pem_all.c Rerun util/openssl-format-source -v -c . 2015-01-22 09:20:10 +00:00
pem_err.c Run util/openssl-format-source -v -c . 2015-01-22 09:20:09 +00:00
pem_info.c free null cleanup finale 2015-05-01 10:02:07 -04:00
pem_lib.c Initialize potentially uninitialized local variables 2015-05-06 13:06:46 +01:00
pem_oth.c Run util/openssl-format-source -v -c . 2015-01-22 09:20:09 +00:00
pem_pk8.c free NULL cleanup 2015-03-28 10:54:15 -04:00
pem_pkey.c free cleanup almost the finale 2015-04-30 17:57:32 -04:00
pem_seal.c free null cleanup finale 2015-05-01 10:02:07 -04:00
pem_sign.c free null cleanup finale 2015-05-01 10:02:07 -04:00
pem_x509.c Run util/openssl-format-source -v -c . 2015-01-22 09:20:09 +00:00
pem_xaux.c Remove X509_PAIR 2015-02-06 10:55:31 -05:00
pkcs7.lis Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
pvkfmt.c free NULL cleanup -- coda 2015-05-01 14:37:16 -04:00