Remove warnings about uninitialised variables.
This has already been applied in the main branch.
This commit is contained in:
parent
1522c23470
commit
18cc99ac17
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,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);
|
||||
|
|
Loading…
Reference in a new issue