зеркало из https://github.com/microsoft/git.git
mailmap: fix bogus for() loop that happened to be safe by accident
The empty loop pretended to have an empty statement as its body by a phony indentation, but in fact was slurping the next statement into it. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
384b32c09b
Коммит
fd99b36134
|
@ -42,9 +42,10 @@ int read_mailmap(struct path_list *map, const char *filename, char **repo_abbrev
|
|||
continue;
|
||||
if (right_bracket == left_bracket + 1)
|
||||
continue;
|
||||
for (end_of_name = left_bracket; end_of_name != buffer
|
||||
&& isspace(end_of_name[-1]); end_of_name--)
|
||||
/* keep on looking */
|
||||
for (end_of_name = left_bracket;
|
||||
end_of_name != buffer && isspace(end_of_name[-1]);
|
||||
end_of_name--)
|
||||
; /* keep on looking */
|
||||
if (end_of_name == buffer)
|
||||
continue;
|
||||
name = xmalloc(end_of_name - buffer + 1);
|
||||
|
|
Загрузка…
Ссылка в новой задаче