public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/openssl] rebase_40beta: dh->q might be NULL.
@ 2026-06-09 12:43 Tomas Mraz
0 siblings, 0 replies; only message in thread
From: Tomas Mraz @ 2026-06-09 12:43 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/openssl
Branch : rebase_40beta
Commit : c5b74d70a3879a2440c9b0bb704a1fd5fd42862b
Author : Tomas Mraz <tmraz@fedoraproject.org>
Date : 2014-01-07T11:57:56+01:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/openssl/c/c5b74d70a3879a2440c9b0bb704a1fd5fd42862b?branch=rebase_40beta
Log:
dh->q might be NULL.
---
diff --git a/openssl-1.0.1e-new-fips-reqs.patch b/openssl-1.0.1e-new-fips-reqs.patch
index 59b3e90..7054955 100644
--- a/openssl-1.0.1e-new-fips-reqs.patch
+++ b/openssl-1.0.1e-new-fips-reqs.patch
@@ -29,7 +29,7 @@ diff -up openssl-1.0.1e/crypto/dh/dh_check.c.fips-reqs openssl-1.0.1e/crypto/dh/
if (BN_cmp(pub_key,q)>=0)
*ret|=DH_CHECK_PUBKEY_TOO_LARGE;
+#ifdef OPENSSL_FIPS
-+ if (FIPS_mode())
++ if (FIPS_mode() && dh->q != NULL)
+ {
+ BN_CTX *ctx = NULL;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-09 12:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-09 12:43 [rpms/openssl] rebase_40beta: dh->q might be NULL Tomas Mraz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox