summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeather Cynede <cynede@gentoo.org>2015-12-10 12:04:32 +0400
committerHeather Cynede <cynede@gentoo.org>2015-12-10 12:04:32 +0400
commit228994031585879b17b90ac6659e5cb80214d088 (patch)
tree92aeb16c40ab93f0e100577042fe53f04aab5d2b /dev-lang/mono/files
parentx11-libs/cairo: Bump to version 1.14.6 (diff)
downloadgentoo-228994031585879b17b90ac6659e5cb80214d088.tar.gz
gentoo-228994031585879b17b90ac6659e5cb80214d088.tar.bz2
gentoo-228994031585879b17b90ac6659e5cb80214d088.zip
dev-lang/mono: bump to 4.2.1.124, patch for bug 36724
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-lang/mono/files')
-rw-r--r--dev-lang/mono/files/fix-for-bug36724.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-lang/mono/files/fix-for-bug36724.patch b/dev-lang/mono/files/fix-for-bug36724.patch
new file mode 100644
index 000000000000..187b4babed20
--- /dev/null
+++ b/dev-lang/mono/files/fix-for-bug36724.patch
@@ -0,0 +1,13 @@
+diff --git a/mcs/class/System.Web/System.Web.Util/UrlUtils.cs b/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
+index 4f07e83..e229a91 100644
+--- a/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
++++ b/mcs/class/System.Web/System.Web.Util/UrlUtils.cs
+@@ -54,7 +54,7 @@ namespace System.Web.Util {
+ if (path.StartsWith (appvpath))
+ path = path.Substring (appvpath.Length);
+
+- if (path [0] == '/')
++ if (path.StartsWith("/"))
+ path = path.Length > 1 ? path.Substring (1) : "";
+
+ return Canonic (appvpath + "(" + id + ")/" + path);