diff options
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/image.scm | 2 | ||||
-rw-r--r-- | gnu/packages/patches/libpng-CVE-2016-10087.patch (renamed from gnu/packages/patches/libpng-fix-null-ptr-dereference.patch) | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 687596f966..ab4d3b0e57 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -95,7 +95,7 @@ library. It supports almost all PNG features and is extensible.") (source (origin (inherit (package-source libpng)) - (patches (search-patches "libpng-fix-null-ptr-dereference.patch")))))) + (patches (search-patches "libpng-CVE-2016-10087.patch")))))) (define-public libpng-1.2 (package diff --git a/gnu/packages/patches/libpng-fix-null-ptr-dereference.patch b/gnu/packages/patches/libpng-CVE-2016-10087.patch index 192459162b..8093b3e448 100644 --- a/gnu/packages/patches/libpng-fix-null-ptr-dereference.patch +++ b/gnu/packages/patches/libpng-CVE-2016-10087.patch @@ -1,5 +1,6 @@ -Fix a null pointer dereference in png_set_text_2(): +Fix CVE-2016-10087, a null pointer dereference in png_set_text_2(): +https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-10087 http://seclists.org/oss-sec/2016/q4/777 Patch adapted from upstream source repository: |