summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9d2e942)
raw | patch | inline | side by side (parent: 9d2e942)
author | Junio C Hamano <gitster@pobox.com> | |
Wed, 23 Jun 2010 17:27:39 +0000 (10:27 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 23 Jun 2010 17:42:07 +0000 (10:42 -0700) |
When using the protocol git+ssh:// for example we do not want to
decode the '+' as a space. The url decoding must take place only
for the server name and parameters.
This fixes a regression introduced in 9d2e942.
Initial-fix-by: Pascal Obry <pascal.obry@gmail.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
decode the '+' as a space. The url decoding must take place only
for the server name and parameters.
This fixes a regression introduced in 9d2e942.
Initial-fix-by: Pascal Obry <pascal.obry@gmail.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
url.c | patch | blob | history |
index cd32b927a4caaa141a56e415ac42c7a52d40e8ee..bf5bb9c88f751be2dd22bc49bcd9d53812cc5b94 100644 (file)
--- a/url.c
+++ b/url.c
return val;
}
-static char *url_decode_internal(const char **query, const char *stop_at)
+static char *url_decode_internal(const char **query, const char *stop_at, struct strbuf *out)
{
const char *q = *query;
- struct strbuf out;
- strbuf_init(&out, 16);
do {
unsigned char c = *q;
if (c == '%') {
int val = url_decode_char(q + 1);
if (0 <= val) {
- strbuf_addch(&out, val);
+ strbuf_addch(out, val);
q += 3;
continue;
}
}
if (c == '+')
- strbuf_addch(&out, ' ');
+ strbuf_addch(out, ' ');
else
- strbuf_addch(&out, c);
+ strbuf_addch(out, c);
q++;
} while (1);
*query = q;
- return strbuf_detach(&out, NULL);
+ return strbuf_detach(out, NULL);
}
char *url_decode(const char *url)
{
- return url_decode_internal(&url, NULL);
+ struct strbuf out = STRBUF_INIT;
+ const char *slash = strchr(url, '/');
+
+ /* Skip protocol part if present */
+ if (slash && url < slash) {
+ strbuf_add(&out, url, slash - url);
+ url = slash;
+ }
+ return url_decode_internal(&url, NULL, &out);
}
char *url_decode_parameter_name(const char **query)
{
- return url_decode_internal(query, "&=");
+ struct strbuf out = STRBUF_INIT;
+ return url_decode_internal(query, "&=", &out);
}
char *url_decode_parameter_value(const char **query)
{
- return url_decode_internal(query, "&");
+ struct strbuf out = STRBUF_INIT;
+ return url_decode_internal(query, "&", &out);
}