aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-07-21 22:46:19 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-07-21 22:46:19 +0000
commit2eed3a3cc87be91ee56a9961abcee5ea43901e56 (patch)
tree953861e22538c9e0243f23d67f6710bc4b8993f9 /crypto
parent1aa44cc797a0245276355f2b1803ca885a622a21 (diff)
downloadopenssl-2eed3a3cc87be91ee56a9961abcee5ea43901e56.tar.gz
Avoid warning.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/asn1/x_name.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/x_name.c b/crypto/asn1/x_name.c
index 68fa34a207..9b0cf15d4a 100644
--- a/crypto/asn1/x_name.c
+++ b/crypto/asn1/x_name.c
@@ -313,7 +313,7 @@ static int x509_name_canon(X509_NAME *a)
unsigned char *p;
STACK *intname = NULL;
STACK_OF(X509_NAME_ENTRY) *entries = NULL;
- X509_NAME_ENTRY *entry, *tmpentry;
+ X509_NAME_ENTRY *entry, *tmpentry = NULL;
int i, set = -1, ret = 0;
if (a->canon_enc)
{