From 04f9095d9eca142c4d7919ff0954a7352bfcf9bc Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 4 Oct 2009 16:52:51 +0000 Subject: Fix unitialized warnings --- crypto/asn1/a_mbstr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/asn1') diff --git a/crypto/asn1/a_mbstr.c b/crypto/asn1/a_mbstr.c index 1bcd046893..1538e0a4fc 100644 --- a/crypto/asn1/a_mbstr.c +++ b/crypto/asn1/a_mbstr.c @@ -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; -- cgit v1.2.3