14 lines
471 B
Diff
14 lines
471 B
Diff
--- origsrc/glib-2.38.2/glib/gconvert.c 2014-04-02 01:48:25.505447200 -0500
|
|
+++ src/glib-2.38.2/glib/gconvert.c 2014-04-02 02:22:47.959345500 -0500
|
|
@@ -1583,7 +1583,9 @@ g_filename_from_uri (const gchar *uri,
|
|
return NULL;
|
|
}
|
|
|
|
- if (has_case_prefix (path_part, "///"))
|
|
+ if (has_case_prefix (path_part, "////"))
|
|
+ path_part += 1;
|
|
+ else if (has_case_prefix (path_part, "///"))
|
|
path_part += 2;
|
|
else if (has_case_prefix (path_part, "//"))
|
|
{
|