public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Tomas Mraz <tmraz@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/openssl] rebase_40beta: dh->q might be NULL.
Date: Tue, 09 Jun 2026 12:43:12 GMT	[thread overview]
Message-ID: <178100899253.1.13643362761977111847.rpms-openssl-c5b74d70a387@fedoraproject.org> (raw)

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;
  

                 reply	other threads:[~2026-06-09 12:43 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178100899253.1.13643362761977111847.rpms-openssl-c5b74d70a387@fedoraproject.org \
    --to=tmraz@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox