Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/procmail/files/
Date: Thu, 28 Mar 2019 23:12:55
Message-Id: 1553814757.73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28.monsieurp@gentoo
1 commit: 73e8272b30ff09ce99ccb4d49a7ad1ca2e72aa28
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Mar 27 06:05:37 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 23:12:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e8272b
7
8 mail-filter/procmail: remove unused patch.
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/11514
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 .../files/procmail-CVE-2014-3618-16844.patch | 25 ----------------------
15 1 file changed, 25 deletions(-)
16
17 diff --git a/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch b/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch
18 deleted file mode 100644
19 index 4f1714063c9..00000000000
20 --- a/mail-filter/procmail/files/procmail-CVE-2014-3618-16844.patch
21 +++ /dev/null
22 @@ -1,25 +0,0 @@
23 ---- a/src/formisc.c 2019-03-23 19:52:18.450174402 -0400
24 -+++ b/src/formisc.c 2019-03-23 19:52:47.914351039 -0400
25 -@@ -84,12 +84,11 @@
26 - case '"':*target++=delim='"';start++;
27 - }
28 - ;{ int i;
29 -- do
30 -+ while(*start);
31 - if((i= *target++= *start++)==delim) /* corresponding delimiter? */
32 - break;
33 - else if(i=='\\'&&*start) /* skip quoted character */
34 - *target++= *start++;
35 -- while(*start); /* anything? */
36 - }
37 - hitspc=2;
38 - }
39 -@@ -104,7 +103,7 @@
40 - }
41 - /* append to buf */
42 - void loadbuf(text,len)const char*const text;const size_t len;
43 --{ if(buffilled+len>buflen) /* buf can't hold the text */
44 -+{ while(buffilled+len>buflen) /* buf can't hold the text */
45 - buf=realloc(buf,buflen+=Bsize);
46 - tmemmove(buf+buffilled,text,len);buffilled+=len;
47 - }