summaryrefslogtreecommitdiff
path: root/src/gmutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gmutil.c')
-rw-r--r--src/gmutil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gmutil.c b/src/gmutil.c
index 131734b2..b2c7e93f 100644
--- a/src/gmutil.c
+++ b/src/gmutil.c
@@ -132,7 +132,8 @@ const iString *absoluteUrl_String(const iString *d, const iString *urlMaybeRelat
132 iUrl rel; 132 iUrl rel;
133 init_Url(&orig, d); 133 init_Url(&orig, d);
134 init_Url(&rel, urlMaybeRelative); 134 init_Url(&rel, urlMaybeRelative);
135 if (equalCase_Rangecc(rel.scheme, "data") || equalCase_Rangecc(rel.scheme, "about")) { 135 if (equalCase_Rangecc(rel.scheme, "data") || equalCase_Rangecc(rel.scheme, "about") ||
136 equalCase_Rangecc(rel.scheme, "mailto")) {
136 /* Special case, the contents should be left unparsed. */ 137 /* Special case, the contents should be left unparsed. */
137 return urlMaybeRelative; 138 return urlMaybeRelative;
138 } 139 }