From: Ben Laurie Date: Sun, 6 Jan 2013 19:03:48 +0000 (+0000) Subject: Fix warning. X-Git-Tag: OpenSSL_1_0_2-beta1~470 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=72dfff2d5e5edd0d4dfa96734b5baeab36a3e2c8;p=oweals%2Fopenssl.git Fix warning. --- diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index 33adb43465..0e109a01d0 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -156,7 +156,7 @@ static int x509_subject_cmp(X509 **a, X509 **b) static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x) { STACK_OF(X509) *certs; - X509 *xtmp; + X509 *xtmp = NULL; int i; /* Lookup all certs with matching subject name */ certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));