Merge pull request #102371 from mweinelt/20.03/openldap

[staging-20.03] openldap: add patch to fix unauthenticated nullptr dereference in slapd
This commit is contained in:
Jörg Thalheim
2020-11-01 19:32:42 +01:00
committed by GitHub

View File

@@ -8,6 +8,16 @@ stdenv.mkDerivation rec {
sha256 = "1f46nlfwmys110j36sifm7ah8m8f3s10c3vaiikmmigmifapvdaw";
};
patches = [
(fetchurl {
# Fix a null-ptr dereference for unauthenticated packet in slapd
# NO CVE yet
# https://bugs.openldap.org/show_bug.cgi?id=9370
url = "https://git.openldap.org/openldap/openldap/-/commit/4c774220a752bf8e3284984890dc0931fe73165d.patch";
sha256 = "1vkbb6szscnhch5zzf6iq104l3dkwd50rih8jk9y0s2vgyz76mil";
})
];
# TODO: separate "out" and "bin"
outputs = [ "out" "dev" "man" "devdoc" ];