зеркало из https://github.com/microsoft/git.git
use name[len] in switch directly, instead of creating a shadowed variable.
builtin-apply.c defines a local variable 'c' which is used only once and then later gets shadowed by another instance of 'c'. Signed-off-by: Pierre Habouzit <madcoder@debian.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
599f8d6314
Коммит
dd305c8462
|
@ -606,9 +606,7 @@ static char *git_header_name(char *line, int llen)
|
|||
* form.
|
||||
*/
|
||||
for (len = 0 ; ; len++) {
|
||||
char c = name[len];
|
||||
|
||||
switch (c) {
|
||||
switch (name[len]) {
|
||||
default:
|
||||
continue;
|
||||
case '\n':
|
||||
|
|
Загрузка…
Ссылка в новой задаче