From 2d7ab7e9ea611de3cd2944934a468c2b0218f0cc Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 20 Apr 2002 10:19:20 +0000 Subject: [PATCH] Do not free p if it hasn't been used yet. Notified by Bernd Matthes --- crypto/asn1/x_pubkey.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/asn1/x_pubkey.c b/crypto/asn1/x_pubkey.c index a34f473cfe..f1ddbf044f 100644 --- a/crypto/asn1/x_pubkey.c +++ b/crypto/asn1/x_pubkey.c @@ -85,7 +85,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); @@ -142,7 +142,6 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) if ((a->parameter = ASN1_TYPE_new()) == NULL) { X509err(X509_F_X509_PUBKEY_SET, ERR_R_ASN1_LIB); - OPENSSL_free(p); goto err; } -- GitLab