summaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:35 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:35 +0000
commitad187f89053549cf3fe481ded227e61984fb0b61 (patch)
tree021a045d2e4eaa9a6ddb50b956716e3362872f26 /crypto/asn1
parent2280f82fc6718b8cc07775f7083c0dd663c3ff47 (diff)
Fix unitialized warnings
Diffstat (limited to 'crypto/asn1')
-rw-r--r--crypto/asn1/a_mbstr.c2
1 files changed, 1 insertions, 1 deletions
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;