summaryrefslogtreecommitdiff
path: root/dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch')
-rw-r--r--dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch b/dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch
deleted file mode 100644
index 6ab3e077b689..000000000000
--- a/dev-lang/mono/files/mono-2.10.9-CVE-2012-3543_2.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 049bb49f1c5b650166de2a266bc1879c5def0190 Mon Sep 17 00:00:00 2001
-From: Marek Habersack <grendel@twistedcode.net>
-Date: Wed, 25 Jul 2012 08:42:09 -0400
-Subject: [PATCH] Update to fix for Novell bug #739119
-
----
- mcs/class/System.Web/System.Web.UI/Page.cs | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/mcs/class/System.Web/System.Web.UI/Page.cs b/mcs/class/System.Web/System.Web.UI/Page.cs
-index 989af7e..b2316a4 100644
---- a/mcs/class/System.Web/System.Web.UI/Page.cs
-+++ b/mcs/class/System.Web/System.Web.UI/Page.cs
-@@ -1175,7 +1175,7 @@ internal void OnFormPostRender (HtmlTextWriter writer, string formUniqueID)
-
- void ProcessPostData (NameValueCollection data, bool second)
- {
-- NameValueCollection requestValues = _requestValueCollection == null ? new NameValueCollection () : _requestValueCollection;
-+ NameValueCollection requestValues = _requestValueCollection == null ? new NameValueCollection (SecureHashCodeProvider.DefaultInvariant, CaseInsensitiveComparer.DefaultInvariant) : _requestValueCollection;
-
- if (data != null && data.Count > 0) {
- var used = new Dictionary <string, string> (StringComparer.Ordinal);
-@@ -1210,7 +1210,7 @@ void ProcessPostData (NameValueCollection data, bool second)
-
- } else if (!second) {
- if (secondPostData == null)
-- secondPostData = new NameValueCollection ();
-+ secondPostData = new NameValueCollection (SecureHashCodeProvider.DefaultInvariant, CaseInsensitiveComparer.DefaultInvariant);
- secondPostData.Add (id, data [id]);
- }
- }
---
-1.7.10
-