doc/share/security/patches/SA-06:23/openssl-correction.patch
Bjoern A. Zeeb 3571e53040 Import FreeBSD Security Advisories and Errata Notices, as well as their
patches for easier mirroring, to eliminate a special copy, to make
www.freebsd.org/security a full copy of security.freebsd.org and be
eventually be the same.

For now files are just sitting there.   The symlinks are missing.

Discussed on:	www (repository location)
Discussed with:	simon (so)
2012-08-15 06:19:40 +00:00

16 lines
577 B
Diff

Index: crypto/openssl/crypto/dh/dh_key.c
===================================================================
RCS file: /home/ncvs/src/crypto/openssl/crypto/dh/dh_key.c,v
retrieving revision 1.1.1.9.2.1
diff -u -I__FBSDID -r1.1.1.9.2.1 dh_key.c
--- crypto/openssl/crypto/dh/dh_key.c 28 Sep 2006 13:02:36 -0000 1.1.1.9.2.1
+++ crypto/openssl/crypto/dh/dh_key.c 29 Sep 2006 06:52:54 -0000
@@ -167,7 +167,7 @@
if (BN_num_bits(dh->p) > OPENSSL_DH_MAX_MODULUS_BITS)
{
DHerr(DH_F_DH_COMPUTE_KEY,DH_R_MODULUS_TOO_LARGE);
- goto err;
+ return -1;
}
ctx = BN_CTX_new();