summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2003-04-03 17:56:28 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2003-04-03 17:56:28 +0000
commit4c6a0e7ef8f1ac89cc80337dbfcf288725c30689 (patch)
tree8956373bd9f14fa78eeced3f278f2ba8beaabfb5
parenta83d91548b782b31428f3a231780f425aa81c05b (diff)
Correct off-by-one error in previous commit. millert@ ok.
-rw-r--r--lib/libcrypto/asn1/a_time.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/a_time.c b/lib/libcrypto/asn1/a_time.c
index f8fdfb5975e..8216783aa8f 100644
--- a/lib/libcrypto/asn1/a_time.c
+++ b/lib/libcrypto/asn1/a_time.c
@@ -146,9 +146,10 @@ ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZE
}
/* grow the string */
- newlen = t->length + 2;
- if (!ASN1_STRING_set(ret, NULL, newlen))
+ if (!ASN1_STRING_set(ret, NULL, t->length + 2))
return NULL;
+ /* ASN1_STRING_set() allocated 'len + 1' bytes. */
+ newlen = t->length + 2 + 1;
str = (char *)ret->data;
/* Work out the century and prepend */
if (t->data[0] >= '5') strlcpy(str, "19", newlen);