aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2021-06-19 17:17:02 +0200
committerMarius Bakke <marius@gnu.org>2021-06-19 17:17:02 +0200
commitdece03e2b98fc1c2428c2448ce5792f813eb79bf (patch)
tree45ac93f89f36f970eece690e511a379540a47a56 /gnu
parent657aaa7be48c924333be70fac9f1224a26abc484 (diff)
downloadguix-dece03e2b98fc1c2428c2448ce5792f813eb79bf.tar
guix-dece03e2b98fc1c2428c2448ce5792f813eb79bf.tar.gz
gnu: Remove bsdiff traces.
This is a follow-up to 373c7b5791acd8f377455be47260948b843dd5db. * gnu/packages/patches/bsdiff-CVE-2014-9862.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/local.mk1
-rw-r--r--gnu/packages/patches/bsdiff-CVE-2014-9862.patch15
2 files changed, 0 insertions, 16 deletions
diff --git a/gnu/local.mk b/gnu/local.mk
index 5d84b3c33c..da86c66cda 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -854,7 +854,6 @@ dist_patch_DATA = \
%D%/packages/patches/bc-fix-cross-compilation.patch \
%D%/packages/patches/bear-disable-preinstall-tests.patch \
%D%/packages/patches/brightnessctl-elogind-support.patch \
- %D%/packages/patches/bsdiff-CVE-2014-9862.patch \
%D%/packages/patches/bsd-games-2.17-64bit.patch \
%D%/packages/patches/bsd-games-add-configure-config.patch \
%D%/packages/patches/bsd-games-add-wrapper.patch \
diff --git a/gnu/packages/patches/bsdiff-CVE-2014-9862.patch b/gnu/packages/patches/bsdiff-CVE-2014-9862.patch
deleted file mode 100644
index 7aab818090..0000000000
--- a/gnu/packages/patches/bsdiff-CVE-2014-9862.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/bspatch.c b/bspatch.c
-index 8d95633..ab77722 100644
---- a/bspatch.c
-+++ b/bspatch.c
-
-@@ -187,6 +187,10 @@
- };
-
- /* Sanity-check */
-+ if ((ctrl[0] < 0) || (ctrl[1] < 0))
-+ errx(1,"Corrupt patch\n");
-+
-+ /* Sanity-check */
- if(newpos+ctrl[0]>newsize)
- errx(1,"Corrupt patch\n");