[openssl] OpenSSL_1_1_1-stable update
tmraz at fedoraproject.org
tmraz at fedoraproject.org
Mon Dec 16 14:08:13 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 39d9123891845f203465dfda181f5c24b45756d1 (commit)
from f9fdb9d2f5a0358a3fd34b060fe23cb0eceb2e2c (commit)
- Log -----------------------------------------------------------------
commit 39d9123891845f203465dfda181f5c24b45756d1
Author: kinichiro <kinichiro.inoguchi at gmail.com>
Date: Thu Dec 5 20:00:50 2019 +0900
Return 1 when openssl req -addext kv is duplicated
CLA: trivial
Fixes #10273
Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10578)
(cherry picked from commit 1aeec3dbc2d62f902698b1eba9ed31cbd436f9dc)
-----------------------------------------------------------------------
Summary of changes:
apps/req.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/apps/req.c b/apps/req.c
index d717c493e5..a603907cd5 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -200,9 +200,12 @@ static int duplicated(LHASH_OF(OPENSSL_STRING) *addexts, char *kv)
*p = '\0';
/* Finally have a clean "key"; see if it's there [by attempt to add it]. */
- if ((p = (char *)lh_OPENSSL_STRING_insert(addexts, (OPENSSL_STRING*)kv))
- != NULL || lh_OPENSSL_STRING_error(addexts)) {
- OPENSSL_free(p != NULL ? p : kv);
+ p = (char *)lh_OPENSSL_STRING_insert(addexts, (OPENSSL_STRING*)kv);
+ if (p != NULL) {
+ OPENSSL_free(p);
+ return 1;
+ } else if (lh_OPENSSL_STRING_error(addexts)) {
+ OPENSSL_free(kv);
return -1;
}
More information about the openssl-commits
mailing list