diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-01-27 18:01:44 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-01 13:46:52 -0800 |
commit | 5a8840194b0525590f930163d72e87a0ab50ac0a (patch) | |
tree | 5db42c60254bf837258ee36b619d572d7c72ebe6 /attr.c | |
parent | 4894f4ffce3cc6c4664027de78c3bc281cda2979 (diff) | |
download | git-5a8840194b0525590f930163d72e87a0ab50ac0a.tar.gz |
attr.c: explain the lack of attr-name syntax check in parse_attr()
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -183,6 +183,12 @@ static const char *parse_attr(const char *src, int lineno, const char *cp, return NULL; } } else { + /* + * As this function is always called twice, once with + * e == NULL in the first pass and then e != NULL in + * the second pass, no need for invalid_attr_name() + * check here. + */ if (*cp == '-' || *cp == '!') { e->setto = (*cp == '-') ? ATTR__FALSE : ATTR__UNSET; cp++; |