Merge branch 'rs/janitorial' into maint

Code clean-up.

* rs/janitorial:
  dir: remove unused variable sb
  clean: remove unused variable buf
  use file_exists() to check if a file exists in the worktree
This commit is contained in:
Junio C Hamano
2015-06-16 14:33:47 -07:00
7 changed files with 9 additions and 26 deletions

2
dir.c
View File

@ -385,7 +385,6 @@ int report_path_error(const char *ps_matched,
/*
* Make sure all pathspec matched; otherwise it is an error.
*/
struct strbuf sb = STRBUF_INIT;
int num, errors = 0;
for (num = 0; num < pathspec->nr; num++) {
int other, found_dup;
@ -417,7 +416,6 @@ int report_path_error(const char *ps_matched,
pathspec->items[num].original);
errors++;
}
strbuf_release(&sb);
return errors;
}