From: Kurt Roeckx Date: Sat, 6 Aug 2016 17:16:00 +0000 (+0200) Subject: Fix off by 1 in ASN1_STRING_set() X-Git-Tag: OpenSSL_1_1_0~109 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a73be798ced572a988d455d961a2387f6eccb549;p=oweals%2Fopenssl.git Fix off by 1 in ASN1_STRING_set() Reviewed-by: Rich Salz MR: #3176 --- diff --git a/crypto/asn1/asn1_lib.c b/crypto/asn1/asn1_lib.c index f2f07ac2d5..9dfe395399 100644 --- a/crypto/asn1/asn1_lib.c +++ b/crypto/asn1/asn1_lib.c @@ -271,7 +271,7 @@ int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len) else len = strlen(data); } - if ((str->length < len) || (str->data == NULL)) { + if ((str->length <= len) || (str->data == NULL)) { c = str->data; str->data = OPENSSL_realloc(c, len + 1); if (str->data == NULL) {