summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-05-25 09:37:57 -0500
committerVladimír Čunát <vcunat@gmail.com>2016-05-25 18:28:52 +0200
commit772851ff46be1c16c417766671a0e701668d8195 (patch)
treea2be6e8dd8b743cce9fe23519c2e60e637a5a065 /pkgs/development
parent69f8016de9e93d58850f0b3bee8597a30e76dc35 (diff)
downloadnixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar.gz
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar.bz2
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar.lz
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar.xz
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.tar.zst
nixpkgs-772851ff46be1c16c417766671a0e701668d8195.zip
libxml2: 2.9.3 -> 2.9.4 for three CVEs (close #15697)
 - CVE-2016-4447: libxml2: Heap-based buffer underreads due to xmlParseName
   https://bugzilla.redhat.com/show_bug.cgi?id=1338686

 - CVE-2016-4448 libxml2: Format string vulnerability
   https://bugzilla.redhat.com/show_bug.cgi?id=1338700

 - CVE-2016-4449 libxml2: Inappropriate fetch of entities content
   https://bugzilla.redhat.com/show_bug.cgi?id=1338701

and many other fixed issues, available at http://www.xmlsoft.org/news.html
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index 7229b10e01c..b6f769078ad 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -3,11 +3,11 @@
 
 stdenv.mkDerivation rec {
   name = "libxml2-${version}";
-  version = "2.9.3";
+  version = "2.9.4";
 
   src = fetchurl {
     url = "http://xmlsoft.org/sources/${name}.tar.gz";
-    sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
+    sha256 = "0g336cr0bw6dax1q48bblphmchgihx9p1pjmxdnrd6sh3qci3fgz";
   };
 
   outputs = [ "dev" "out" "bin" "doc" ]