Fix unitialized warnings

This commit is contained in:
Dr. Stephen Henson 2009-10-04 16:53:18 +00:00
parent d7050b4424
commit 381a9f04a0

View File

@ -93,7 +93,7 @@ int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
int str_type;
int ret;
char free_out;
int outform, outlen;
int outform, outlen = 0;
ASN1_STRING *dest;
unsigned char *p;
int nchar;