projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9d3ec6
)
Fix Valgrind warning.
author
Bodo Möller
<bodo@openssl.org>
Mon, 24 Sep 2012 19:49:16 +0000
(19:49 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 24 Sep 2012 19:49:16 +0000
(19:49 +0000)
Submitted by: Adam Langley
crypto/asn1/a_strex.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/a_strex.c
b/crypto/asn1/a_strex.c
index 264ebf2393a2e7a3ab986fd25d8810f5bc7b1bc1..ead37ac32582cdf804db882f9bdb08fb2fcaf8bf 100644
(file)
--- a/
crypto/asn1/a_strex.c
+++ b/
crypto/asn1/a_strex.c
@@
-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;