projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
85afea6
)
Return error when trying to print invalid ASN1 integer
author
Kurt Roeckx
<kurt@roeckx.be>
Sat, 16 Jul 2016 14:56:54 +0000
(16:56 +0200)
committer
Kurt Roeckx
<kurt@roeckx.be>
Sat, 16 Jul 2016 19:51:49 +0000
(21:51 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #1322
crypto/asn1/tasn_prn.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/tasn_prn.c
b/crypto/asn1/tasn_prn.c
index
9f4c81e
..
930ef97
100644
(file)
--- a/
crypto/asn1/tasn_prn.c
+++ b/
crypto/asn1/tasn_prn.c
@@
-393,6
+393,8
@@
static int asn1_print_integer(BIO *out, ASN1_INTEGER *str)
char *s;
int ret = 1;
s = i2s_ASN1_INTEGER(NULL, str);
+ if (s == NULL)
+ return 0;
if (BIO_puts(out, s) <= 0)
ret = 0;
OPENSSL_free(s);