diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-04-06 22:55:23 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-04-06 22:55:23 +0200 |
commit | 425b8537e8a46b6e7e32e65103ee87542d6ed3dc (patch) | |
tree | 1867b2a828ebdf105124d8394b9dc4bad13fd9f5 /gnu/packages/pcre.scm | |
parent | e37595d9617658e3098b1d1b3f9f5d9aad4daf53 (diff) | |
download | patches-425b8537e8a46b6e7e32e65103ee87542d6ed3dc.tar patches-425b8537e8a46b6e7e32e65103ee87542d6ed3dc.tar.gz |
gnu: pcre: Fix CVE-2016-3191.
* gnu/packages/patches/pcre-CVE-2016-3191.patch: New file.
* gnu/packages/pcre.scm (pcre)[source]: Use it.
* gnu-system.am (dist_patch_DATA): Add 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 d2933bbe38..e0cff5a2e0 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -40,7 +40,8 @@ version "/pcre-" version ".tar.bz2"))) (sha256 (base32 - "1pvra19ljkr5ky35y2iywjnsckrs9ch2anrf5b0dc91hw8v2vq5r")))) + "1pvra19ljkr5ky35y2iywjnsckrs9ch2anrf5b0dc91hw8v2vq5r")) + (patches (list (search-patch "pcre-CVE-2016-3191.patch"))))) (build-system gnu-build-system) (outputs '("out" "doc")) ;1.8 MiB of HTML |