diff options
author | Leo Famulari <leo@famulari.name> | 2018-03-27 18:59:20 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-03-27 19:00:03 -0400 |
commit | 4d99a3215c1cb3eda1e9f1159e6fb87915d7390a (patch) | |
tree | 4b75b0f5e1b7b629e3592a87ffad10212926b55b /gnu/packages/pdf.scm | |
parent | 5bd43f7fd104b80c3054c24b30489549f7ee7029 (diff) | |
download | patches-4d99a3215c1cb3eda1e9f1159e6fb87915d7390a.tar patches-4d99a3215c1cb3eda1e9f1159e6fb87915d7390a.tar.gz |
gnu: mupdf: Fix CVE-2018-{6544,1000051}.
* gnu/packages/patches/mupdf-CVE-2018-1000051.patch,
gnu/packages/patches/mupdf-CVE-2018-6544.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/pdf.scm (mupdf)[source]: Use them.
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index a5d57cd5ec..84b53b00b4 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -574,7 +574,9 @@ extracting content or merging files.") (uri (string-append "https://mupdf.com/downloads/archive/" name "-" version "-source.tar.xz")) (patches (search-patches "mupdf-build-with-latest-openjpeg.patch" - "mupdf-CVE-2017-17858.patch")) + "mupdf-CVE-2017-17858.patch" + "mupdf-CVE-2018-6544.patch" + "mupdf-CVE-2018-1000051.patch")) (sha256 (base32 "0b9j0gqbc3jhmx87r6idcsh8lnb30840c3hyx6dk2gdjqqh3hysp")) |