]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- assume outdated
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 2 May 2006 22:26:23 +0000 (22:26 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-CVE-2005-3352.patch -> 1.2

apache1-CVE-2005-3352.patch [deleted file]

diff --git a/apache1-CVE-2005-3352.patch b/apache1-CVE-2005-3352.patch
deleted file mode 100644 (file)
index 11a2152..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: src/modules/standard/mod_imap.c
-===================================================================
---- src/modules/standard/mod_imap.c    (revision 330526)
-+++ src/modules/standard/mod_imap.c    (working copy)
-@@ -328,7 +328,7 @@
-     if (!strcasecmp(value, "referer")) {
-         referer = ap_table_get(r->headers_in, "Referer");
-         if (referer && *referer) {
--          return ap_pstrdup(r->pool, referer);
-+          return ap_escape_html(r->pool, referer);
-         }
-         else {
-           /* XXX:  This used to do *value = '\0'; ... which is totally bogus
-Index: src/main/util.c
-===================================================================
---- src/main/util.c    (revision 330526)
-+++ src/main/util.c    (working copy)
-@@ -1722,6 +1722,8 @@
-           j += 3;
-       else if (s[i] == '&')
-           j += 4;
-+      else if (s[i] == '"')
-+          j += 5;
-     if (j == 0)
-       return ap_pstrndup(p, s, i);
-@@ -1740,6 +1742,10 @@
-           memcpy(&x[j], "&amp;", 5);
-           j += 4;
-       }
-+      else if (s[i] == '"') {
-+          memcpy(&x[j], "&quot;", 6);
-+          j += 5;
-+      }
-       else
-           x[j] = s[i];
This page took 0.051393 seconds and 4 git commands to generate.