diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2011-08-27 06:12:44 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-27 11:47:49 -0700 |
commit | f3738c1ce9193a4bf45ba1a3ea67d0cf32da0257 (patch) | |
tree | ff76b2cc8cca0320d66b4e6b425baa1d7117fcba /refs.c | |
parent | 2f633f41d69527cdd9ff5b8e04a752f1774fc3df (diff) | |
download | git-f3738c1ce9193a4bf45ba1a3ea67d0cf32da0257.tar.gz git-f3738c1ce9193a4bf45ba1a3ea67d0cf32da0257.tar.xz |
Forbid DEL characters in reference names
DEL is an ASCII control character and therefore should not be
permitted in reference names. Add tests for this and other unusual
characters.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -837,7 +837,7 @@ int for_each_rawref(each_ref_fn fn, void *cb_data) static inline int bad_ref_char(int ch) { - if (((unsigned) ch) <= ' ' || + if (((unsigned) ch) <= ' ' || ch == 0x7f || ch == '~' || ch == '^' || ch == ':' || ch == '\\') return 1; /* 2.13 Pattern Matching Notation */ |