提交 2d7ab7e9 编写于 作者: R Richard Levitte

Do not free p if it hasn't been used yet.

Notified by Bernd Matthes <bernd.matthes@gemplus.com>
上级 6176df94
...@@ -85,7 +85,7 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) ...@@ -85,7 +85,7 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
X509_PUBKEY *pk; X509_PUBKEY *pk;
X509_ALGOR *a; X509_ALGOR *a;
ASN1_OBJECT *o; ASN1_OBJECT *o;
unsigned char *s,*p; unsigned char *s,*p = NULL;
int i; int i;
if (x == NULL) return(0); if (x == NULL) return(0);
...@@ -142,7 +142,6 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) ...@@ -142,7 +142,6 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
if ((a->parameter = ASN1_TYPE_new()) == NULL) if ((a->parameter = ASN1_TYPE_new()) == NULL)
{ {
X509err(X509_F_X509_PUBKEY_SET, ERR_R_ASN1_LIB); X509err(X509_F_X509_PUBKEY_SET, ERR_R_ASN1_LIB);
OPENSSL_free(p);
goto err; goto err;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册