From 18cc99ac172344367168a14f649c4e85aa0d19f9 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 22 May 2002 07:55:03 +0000 Subject: [PATCH] Remove warnings about uninitialised variables. This has already been applied in the main branch. --- crypto/asn1/x_pubkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/asn1/x_pubkey.c b/crypto/asn1/x_pubkey.c index 55630294b..b3d0fa010 100644 --- a/crypto/asn1/x_pubkey.c +++ b/crypto/asn1/x_pubkey.c @@ -84,7 +84,7 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) X509_PUBKEY *pk; X509_ALGOR *a; ASN1_OBJECT *o; - unsigned char *s,*p; + unsigned char *s,*p = NULL; int i; if (x == NULL) return(0);