[openssl-dev] [openssl.org #3835] [PATCH] Initialize potentially uninitialized local variables

2015-05-05 Thread Gunnar Kudrjavets via RT
Hello, Fix all the instances of MSVC warning 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. Thank you, Gunnar Kudrjavets >From 3f65a16efe0b78f7c994b0317c7ef0ee

[openssl-dev] [openssl.org #3835] [PATCH] Initialize potentially uninitialized local variables

2015-05-06 Thread Matt Caswell via RT
Patch applied. Thanks. Note that actually all of these are bogus warnings. In none of the instances fixed was there an actual code path which resulted in an uninitialised variable being used - it's just that the compiler was unable to figure that out and so issues spurious warnings. Matt ___