mirror of https://github.com/openssl/openssl.git
Clear unused variables in X509_print_ex()
CLA: trivial Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18167)
This commit is contained in:
parent
6009997abd
commit
36699c12d3
|
@ -55,7 +55,7 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,
|
|||
{
|
||||
long l;
|
||||
int ret = 0, i;
|
||||
char *m = NULL, mlch = ' ';
|
||||
char mlch = ' ';
|
||||
int nmindent = 0, printok = 0;
|
||||
EVP_PKEY *pkey = NULL;
|
||||
const char *neg;
|
||||
|
@ -222,7 +222,6 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,
|
|||
}
|
||||
ret = 1;
|
||||
err:
|
||||
OPENSSL_free(m);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue