aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_genn.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-06-08 11:00:37 +0000
committerRichard Levitte <levitte@openssl.org>2000-06-08 11:00:37 +0000
commitd44c7dcf002c8ee3d99e3387024871eddaf2f646 (patch)
treef9f32a92b13ff6ae76fc6f2c3e05a115c4e266ad /crypto/x509v3/v3_genn.c
parent5decfb7002045801b1cbc9a6ff5c99408727c4a7 (diff)
downloadopenssl-d44c7dcf002c8ee3d99e3387024871eddaf2f646.tar.gz
Merge in code from main trunk to BRANCH_engine.
Diffstat (limited to 'crypto/x509v3/v3_genn.c')
-rw-r--r--crypto/x509v3/v3_genn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509v3/v3_genn.c b/crypto/x509v3/v3_genn.c
index 894afa7e03..2de1c4b428 100644
--- a/crypto/x509v3/v3_genn.c
+++ b/crypto/x509v3/v3_genn.c
@@ -211,7 +211,7 @@ void GENERAL_NAME_free(GENERAL_NAME *a)
break;
}
- Free (a);
+ OPENSSL_free (a);
}
/* Now the GeneralNames versions: a SEQUENCE OF GeneralName. These are needed as
@@ -286,6 +286,6 @@ void OTHERNAME_free(OTHERNAME *a)
if (a == NULL) return;
ASN1_OBJECT_free(a->type_id);
ASN1_TYPE_free(a->value);
- Free (a);
+ OPENSSL_free (a);
}