lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

openldap: Fix CVE-2015-6908

+28
+25
pkgs/development/libraries/openldap/CVE-2015-6908.patch
··· 1 + From 6fe51a9ab04fd28bbc171da3cf12f1c1040d6629 Mon Sep 17 00:00:00 2001 2 + From: Howard Chu <hyc@openldap.org> 3 + Date: Thu, 10 Sep 2015 00:37:32 +0100 4 + Subject: [PATCH] ITS#8240 remove obsolete assert 5 + 6 + --- 7 + libraries/liblber/io.c | 2 +- 8 + 1 file changed, 1 insertion(+), 1 deletion(-) 9 + 10 + diff --git a/libraries/liblber/io.c b/libraries/liblber/io.c 11 + index 85c3e23..c05dcf8 100644 12 + --- a/libraries/liblber/io.c 13 + +++ b/libraries/liblber/io.c 14 + @@ -679,7 +679,7 @@ done: 15 + return (ber->ber_tag); 16 + } 17 + 18 + - assert( 0 ); /* ber structure is messed up ?*/ 19 + + /* invalid input */ 20 + return LBER_DEFAULT; 21 + } 22 + 23 + -- 24 + 1.7.10.4 25 +
+3
pkgs/development/libraries/openldap/default.nix
··· 8 8 sha256 = "0qwfpb5ipp2l76v11arghq5mr0sjc6xhjfg8a0kgsaw5qpib1dzf"; 9 9 }; 10 10 11 + # Should be removed with >=2.4.43 12 + patches = [ ./CVE-2015-6908.patch ]; 13 + 11 14 outputs = [ "out" "man" ]; 12 15 13 16 buildInputs = [ openssl cyrus_sasl db groff ];