diff options
author | Leo Famulari <leo@famulari.name> | 2017-05-07 17:13:38 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-05-07 17:46:00 -0400 |
commit | 37f46a4bc51886c0d0df797bfbb13a50fe647567 (patch) | |
tree | 7e331389ed9dbfd729a56a837bdf658596dea65c /gnu/packages/pcre.scm | |
parent | 86ab11205ed2b5c925ed9c8328736a433b0d933c (diff) | |
download | guix-37f46a4bc51886c0d0df797bfbb13a50fe647567.tar guix-37f46a4bc51886c0d0df797bfbb13a50fe647567.tar.gz |
gnu: pcre2: Fix CVE-2017-8786.
* gnu/packages/patches/pcre2-CVE-2017-8786.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/pcre.scm (pcre2)[source]: Use it.
Diffstat (limited to 'gnu/packages/pcre.scm')
-rw-r--r-- | gnu/packages/pcre.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 1946f5229c..b632b9f488 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -92,7 +92,8 @@ POSIX regular expression API.") (sha256 (base32 "0vn5g0mkkp99mmzpissa06hpyj6pk9s4mlwbjqrjvw3ihy8rpiyz")) - (patches (search-patches "pcre2-CVE-2017-7186.patch")))) + (patches (search-patches "pcre2-CVE-2017-7186.patch" + "pcre2-CVE-2017-8786.patch")))) (build-system gnu-build-system) (inputs `(("bzip2" ,bzip2) ("readline" ,readline) |