]> git.pld-linux.org Git - packages/alpine.git/commitdiff
- outdated (applied)
authorPaweł Gołaszewski <blues@pld-linux.org>
Tue, 25 Mar 2008 20:38:38 +0000 (20:38 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    alpine-quote.patch -> 1.2
    alpine-segfix.patch -> 1.2

alpine-quote.patch [deleted file]
alpine-segfix.patch [deleted file]

diff --git a/alpine-quote.patch b/alpine-quote.patch
deleted file mode 100644 (file)
index 1be0de5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- alpine-0.9999/pith/mailcap.c~      2007-08-15 22:28:09.000000000 +0200
-+++ alpine-0.9999/pith/mailcap.c       2007-11-05 14:32:39.000000000 +0100
-@@ -881,17 +881,19 @@
-                    * have to put those outside of the single quotes.
-                    * (The parm+1000 nonsense is to protect against
-                    * malicious mail trying to overlow our buffer.)
-+                   *
-+                   * TCH - Change 2/8/1999
-+                   * Also quote the ` slash to prevent execution of arbirtrary code
-                    */
-                   for(p = parm; *p && p < parm+1000; p++){
--                      if(*p == '\''){
--                          if(to-tmp_20k_buf+3 < SIZEOF_20KBUF){
-+                      if((*p == '\'')||(*p=='`')){
-+                          if(to-tmp_20k_buf+4 < SIZEOF_20KBUF){
-                               *to++ = '\'';  /* closing quote */
-                               *to++ = '\\';
--                              *to++ = '\'';  /* below will be opening quote */
-+                              *to++ = *p; /* quoted character */
-+                              *to++ = '\'';  /* opening quote */
-                           }
--                      }
--
--                      if(to-tmp_20k_buf < SIZEOF_20KBUF)
-+                      } else if(to-tmp_20k_buf < SIZEOF_20KBUF)
-                         *to++ = *p;
-                   }
diff --git a/alpine-segfix.patch b/alpine-segfix.patch
deleted file mode 100644 (file)
index 381d397..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---- alpine-0.9999/pith/osdep/lstcmpnt.c~       2007-08-20 21:46:37.000000000 +0200
-+++ alpine-0.9999/pith/osdep/lstcmpnt.c        2007-11-05 14:37:52.000000000 +0100
-@@ -44,10 +44,10 @@
- char *
- last_cmpnt(char *filename)
- {
--    register char *p = NULL, *q = filename;
-+    char *p = NULL, *q = filename;
--    if(!q)
--      return(q);
-+    if(filename == NULL)
-+      return NULL;
-     while((q = strchr(q, FILE_SEP)) != NULL)
-       if(*++q)
This page took 0.127326 seconds and 4 git commands to generate.