You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/mono/files/fix-for-bug36724.patch

14 lines
551 B

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);