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:
8b8d963
)
Fix off by 1 in ASN1_STRING_set()
author
Kurt Roeckx
<kurt@roeckx.be>
Sat, 6 Aug 2016 17:16:00 +0000
(19:16 +0200)
committer
Kurt Roeckx
<kurt@roeckx.be>
Sat, 20 Aug 2016 16:53:56 +0000
(18:53 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
MR: #3176
crypto/asn1/asn1_lib.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/asn1_lib.c
b/crypto/asn1/asn1_lib.c
index f2f07ac2d5171a1762f3b92f8fce9a84d96f2af5..9dfe395399c58bc2479146312d7762f6b4b27bc8 100644
(file)
--- 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) {