From: Marcel Raad Date: Wed, 30 Mar 2016 15:23:02 +0000 (+0200) Subject: openssl: Fix compilation warnings X-Git-Tag: curl-7_49_0~259 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4dae049157102c47b11a3bea19f06819a1e42d6c;p=thirdparty%2Fcurl.git openssl: Fix compilation warnings When compiling with OpenSSL 1.1.0 (so that the HAVE_X509_GET0_SIGNATURE && HAVE_X509_GET0_EXTENSIONS pre-processor block is active), Visual C++ 14 complains: warning C4701: potentially uninitialized local variable 'palg' used warning C4701: potentially uninitialized local variable 'psig' used --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index f8ccb234a5..54fbfad2a3 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2322,7 +2322,7 @@ static CURLcode get_cert_chain(struct connectdata *conn, EVP_PKEY *pubkey=NULL; int j; char *ptr; - ASN1_BIT_STRING *psig; + ASN1_BIT_STRING *psig = NULL; X509_NAME_print_ex(mem, X509_get_subject_name(x), 0, XN_FLAG_ONELINE); push_certinfo("Subject", i); @@ -2342,7 +2342,7 @@ static CURLcode get_cert_chain(struct connectdata *conn, #if defined(HAVE_X509_GET0_SIGNATURE) && defined(HAVE_X509_GET0_EXTENSIONS) { - X509_ALGOR *palg; + X509_ALGOR *palg = NULL; ASN1_STRING *a = ASN1_STRING_new(); if(a) { X509_get0_signature(&psig, &palg, x);