From: Ben Laurie Date: Sat, 4 Apr 2009 13:39:48 +0000 (+0000) Subject: Fix warning. X-Git-Tag: OpenSSL_1_0_0-beta2~43 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3042945ac896e5fc72efca9f7db21aa524ead910;p=oweals%2Fopenssl.git Fix warning. --- diff --git a/crypto/pkcs12/p12_kiss.c b/crypto/pkcs12/p12_kiss.c index 10ee5e7b94..292cc3ed4a 100644 --- a/crypto/pkcs12/p12_kiss.c +++ b/crypto/pkcs12/p12_kiss.c @@ -81,7 +81,7 @@ int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca) { STACK_OF(X509) *ocerts = NULL; - X509 *x; + X509 *x = NULL; /* Check for NULL PKCS12 structure */ if(!p12)