summaryrefslogtreecommitdiffstats
path: root/refs.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-05-23 10:39:45 +0200
committerJunio C Hamano <gitster@pobox.com>2009-05-23 10:39:45 +0200
commite05aae684d453695bc5bd1e66aa96bc7d42e186a (patch)
tree6e4e87717266383da704063fca3e9db42c081b23 /refs.c
parentMerge branch 'hv/sample-update' (diff)
parentDisallow '\' in ref names (diff)
downloadgit-e05aae684d453695bc5bd1e66aa96bc7d42e186a.tar.xz
git-e05aae684d453695bc5bd1e66aa96bc7d42e186a.zip
Merge branch 'rr/forbid-bs-in-ref'
* rr/forbid-bs-in-ref: Disallow '\' in ref names
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/refs.c b/refs.c
index 2b1f0f0e6e..bb4bdc9eac 100644
--- a/refs.c
+++ b/refs.c
@@ -682,12 +682,13 @@ int for_each_rawref(each_ref_fn fn, void *cb_data)
* - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
* - it ends with a "/".
* - it ends with ".lock"
+ * - it contains a "\" (backslash)
*/
static inline int bad_ref_char(int ch)
{
if (((unsigned) ch) <= ' ' ||
- ch == '~' || ch == '^' || ch == ':')
+ ch == '~' || ch == '^' || ch == ':' || ch == '\\')
return 1;
/* 2.13 Pattern Matching Notation */
if (ch == '?' || ch == '[') /* Unsupported */