From 0bea1ac8f6d61ed42dd154305a4d5b8c27478ad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Wed, 24 Apr 2019 08:00:05 +0200 Subject: [PATCH] Ensure variable is initialized. It seem unnecessarily risky to leave it uninitialized when PKCS7_free is called on it unconditionally at the end of the function. --- osslsigncode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osslsigncode.c b/osslsigncode.c index 59573ca..a0a88fc 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -2329,7 +2329,7 @@ static char *getpassword(const char *prompt) int main(int argc, char **argv) { BIO *btmp, *sigbio, *hash, *outdata; PKCS12 *p12; - PKCS7 *p7 = NULL, *cursig = NULL, *outsig = NULL, *sig, *p7x = NULL; + PKCS7 *p7 = NULL, *cursig = NULL, *outsig = NULL, *sig = NULL, *p7x = NULL; X509 *cert = NULL; STACK_OF(X509) *certs = NULL, *xcerts = NULL; EVP_PKEY *pkey = NULL;