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:
83b4049
)
Fix a crash with malformed user notice policy numbers
author
Bernd Edlinger
<bernd.edlinger@hotmail.de>
Thu, 2 Feb 2017 12:36:10 +0000
(13:36 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Sun, 5 Feb 2017 00:04:39 +0000
(
01:04
+0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2352)
crypto/x509v3/v3_cpols.c
patch
|
blob
|
history
diff --git
a/crypto/x509v3/v3_cpols.c
b/crypto/x509v3/v3_cpols.c
index a69733848874fea62277d34c954dad7cf9a6a1a5..f717e132d4a0b3f9798f0bcf45bf510ab599e72f 100644
(file)
--- a/
crypto/x509v3/v3_cpols.c
+++ b/
crypto/x509v3/v3_cpols.c
@@
-345,10
+345,10
@@
static int nref_nos(STACK_OF(ASN1_INTEGER) *nnums, STACK_OF(CONF_VALUE) *nos)
return 1;
merr:
+ ASN1_INTEGER_free(aint);
X509V3err(X509V3_F_NREF_NOS, ERR_R_MALLOC_FAILURE);
err:
- sk_ASN1_INTEGER_pop_free(nnums, ASN1_STRING_free);
return 0;
}