Fix Valgrind warning.
authorBodo Möller <bodo@openssl.org>
Mon, 24 Sep 2012 19:50:07 +0000 (19:50 +0000)
committerBodo Möller <bodo@openssl.org>
Mon, 24 Sep 2012 19:50:07 +0000 (19:50 +0000)
Submitted by: Adam Langley

crypto/asn1/a_strex.c

index 264ebf2393a2e7a3ab986fd25d8810f5bc7b1bc1..ead37ac32582cdf804db882f9bdb08fb2fcaf8bf 100644 (file)
@@ -567,6 +567,7 @@ int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in)
        if(mbflag == -1) return -1;
        mbflag |= MBSTRING_FLAG;
        stmp.data = NULL;
+       stmp.length = 0;
        ret = ASN1_mbstring_copy(&str, in->data, in->length, mbflag, B_ASN1_UTF8STRING);
        if(ret < 0) return ret;
        *out = stmp.data;