Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
remote: add promisor and partial clone config to the doc
[gitweb.git]
/
url.c
diff --git
a/url.c
b/url.c
index 25576c390baa79cb0a203d7f682e8f3442f91a60..1b8ef78ceab03784ad48f8411b20669e2ea1ea1f 100644
(file)
--- a/
url.c
+++ b/
url.c
@@
-46,9
+46,9
@@
static char *url_decode_internal(const char **query, int len,
break;
}
- if (c == '%') {
+ if (c == '%'
&& (len < 0 || len >= 3)
) {
int val = hex2chr(q + 1);
- if (0 <
=
val) {
+ if (0 < val) {
strbuf_addch(out, val);
q += 3;
len -= 3;