X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fasn1%2Fa_time.c;h=6e5e9d845dc31afaba84798cc7f7f36ce43691ed;hp=27ddd30899bdcfa29dbfe34d7193bdaa69e5b140;hb=c112323dd5d107b199a6d951f8be4c882ff0fba1;hpb=0709385d3caf380d8506a16cc27573e7d2cf52b5 diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c index 27ddd30899..6e5e9d845d 100644 --- a/crypto/asn1/a_time.c +++ b/crypto/asn1/a_time.c @@ -152,7 +152,7 @@ ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZE if (t->data[0] >= '5') strcpy(str, "19"); else strcpy(str, "20"); - strcat(str, (char *)t->data); + BUF_strlcat(str, (char *)t->data, t->length+2); return ret; }