From: Dr. David von Oheimb Date: Mon, 28 Sep 2020 08:31:46 +0000 (+0200) Subject: Fix memory leak in req_cb() of x_req.c - handle distinguishing_id also with NO_SM2 X-Git-Tag: openssl-3.0.0-alpha7~79 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d80985e178d77226392f9c35c36f3f885b884d7;p=thirdparty%2Fopenssl.git Fix memory leak in req_cb() of x_req.c - handle distinguishing_id also with NO_SM2 Was detected via test_req_distinguishing_id() with config having no-ec but not no-sm2 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/13021) --- diff --git a/crypto/x509/x_req.c b/crypto/x509/x_req.c index 21215b47780..e821ffdb788 100644 --- a/crypto/x509/x_req.c +++ b/crypto/x509/x_req.c @@ -48,7 +48,6 @@ static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, static int req_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, void *exarg) { -#ifndef OPENSSL_NO_SM2 X509_REQ *ret = (X509_REQ *)*pval; switch (operation) { @@ -63,7 +62,6 @@ static int req_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, ASN1_OCTET_STRING_free(ret->distinguishing_id); break; } -#endif return 1; }