aboutsummaryrefslogtreecommitdiffstats
path: root/community/zziplib/CVE-2017-5979.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/zziplib/CVE-2017-5979.patch')
-rw-r--r--community/zziplib/CVE-2017-5979.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/community/zziplib/CVE-2017-5979.patch b/community/zziplib/CVE-2017-5979.patch
deleted file mode 100644
index 6aaf8ed66d..0000000000
--- a/community/zziplib/CVE-2017-5979.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: zziplib-0.13.62/zzip/fseeko.c
-===================================================================
---- zziplib-0.13.62.orig/zzip/fseeko.c
-+++ zziplib-0.13.62/zzip/fseeko.c
-@@ -255,7 +255,7 @@ zzip_entry_findfirst(FILE * disk)
- return 0;
- /* we read out chunks of 8 KiB in the hope to match disk granularity */
- ___ zzip_off_t pagesize = PAGESIZE; /* getpagesize() */
-- ___ ZZIP_ENTRY *entry = malloc(sizeof(*entry));
-+ ___ ZZIP_ENTRY *entry = calloc(1, sizeof(*entry));
- if (! entry)
- return 0;
- ___ unsigned char *buffer = malloc(pagesize);