summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-03-27 07:05:37 +0100
committerPatrice Clement <monsieurp@gentoo.org>2019-03-29 00:12:37 +0100
commit73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28 (patch)
tree7b7c4b21dc8dc7c04abb6c48db6bbcba12be79e8 /mail-filter
parentapp-misc/mosquitto: LibreSSL support. (diff)
downloadgentoo-73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28.tar.gz
gentoo-73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28.tar.bz2
gentoo-73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28.zip
mail-filter/procmail: remove unused patch.
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11514 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r--mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch b/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch
deleted file mode 100644
index 4f1714063c9e..000000000000
--- a/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/src/formisc.c 2019-03-23 19:52:18.450174402 -0400
-+++ b/src/formisc.c 2019-03-23 19:52:47.914351039 -0400
-@@ -84,12 +84,11 @@
- case '"':*target++=delim='"';start++;
- }
- ;{ int i;
-- do
-+ while(*start);
- if((i= *target++= *start++)==delim) /* corresponding delimiter? */
- break;
- else if(i=='\\'&&*start) /* skip quoted character */
- *target++= *start++;
-- while(*start); /* anything? */
- }
- hitspc=2;
- }
-@@ -104,7 +103,7 @@
- }
- /* append to buf */
- void loadbuf(text,len)const char*const text;const size_t len;
--{ if(buffilled+len>buflen) /* buf can't hold the text */
-+{ while(buffilled+len>buflen) /* buf can't hold the text */
- buf=realloc(buf,buflen+=Bsize);
- tmemmove(buf+buffilled,text,len);buffilled+=len;
- }