diff options
author | Leo Famulari <leo@famulari.name> | 2018-01-19 17:49:02 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-01-19 17:51:00 -0800 |
commit | ccb5cac17be98aaa9c3225605d6170c675d8e8e6 (patch) | |
tree | f5edc746192152c97506347d5d0b38e27a6ba905 /gnu/packages/photo.scm | |
parent | e8409dd2754259e6478ebcba390738f832452191 (diff) | |
download | patches-ccb5cac17be98aaa9c3225605d6170c675d8e8e6.tar patches-ccb5cac17be98aaa9c3225605d6170c675d8e8e6.tar.gz |
gnu: libexif: Fix CVE-2016-6328.
* gnu/packages/patches/libexif-CVE-2016-6328.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/photo.scm (libexif)[source]: Use it.
Diffstat (limited to 'gnu/packages/photo.scm')
-rw-r--r-- | gnu/packages/photo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/photo.scm b/gnu/packages/photo.scm index e93e4651f3..d8a80acb36 100644 --- a/gnu/packages/photo.scm +++ b/gnu/packages/photo.scm @@ -91,7 +91,8 @@ cameras (CRW/CR2, NEF, RAF, DNG, and others).") (method url-fetch) (uri (string-append "mirror://sourceforge/libexif/libexif/" version "/libexif-" version ".tar.bz2")) - (patches (search-patches "libexif-CVE-2017-7544.patch")) + (patches (search-patches "libexif-CVE-2016-6328.patch" + "libexif-CVE-2017-7544.patch")) (sha256 (base32 "06nlsibr3ylfwp28w8f5466l6drgrnydgxrm4jmxzrmk5svaxk8n")))) |