From b1e005e6179561d016bd09b95d5343ac44e257f2 Mon Sep 17 00:00:00 2001 From: beck Date: Mon, 21 Apr 2014 00:52:00 +0000 Subject: [PATCH] fix accidentally deleted deref. --- lib/libcrypto/asn1/a_time.c | 2 +- lib/libssl/src/crypto/asn1/a_time.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/asn1/a_time.c b/lib/libcrypto/asn1/a_time.c index 080c3dfddb2..8db21636228 100644 --- a/lib/libcrypto/asn1/a_time.c +++ b/lib/libcrypto/asn1/a_time.c @@ -152,7 +152,7 @@ ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out) /* ASN1_STRING_set() allocated 'len + 1' bytes. */ newlen = t->length + 2 + 1; str = (char *)ret->data; - i = snprintf(str, newlen, "%s%s", (t->data >= '5') ? "19" : "20", + i = snprintf(str, newlen, "%s%s", (t->data[0] >= '5') ? "19" : "20", (char *) t->data); if (i == -1 || i >= newlen) { ASN1_STRING_free(ret); diff --git a/lib/libssl/src/crypto/asn1/a_time.c b/lib/libssl/src/crypto/asn1/a_time.c index 080c3dfddb2..8db21636228 100644 --- a/lib/libssl/src/crypto/asn1/a_time.c +++ b/lib/libssl/src/crypto/asn1/a_time.c @@ -152,7 +152,7 @@ ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out) /* ASN1_STRING_set() allocated 'len + 1' bytes. */ newlen = t->length + 2 + 1; str = (char *)ret->data; - i = snprintf(str, newlen, "%s%s", (t->data >= '5') ? "19" : "20", + i = snprintf(str, newlen, "%s%s", (t->data[0] >= '5') ? "19" : "20", (char *) t->data); if (i == -1 || i >= newlen) { ASN1_STRING_free(ret); -- 2.20.1