summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-06-16 21:33:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-06-16 21:33:47 (GMT)
commitdfb67594e964e63f20546361597c06432c73779d (patch)
tree3ea858127e139ee620a010f4ba82aa95b9fca77c /dir.c
parent2cd8ebdd3d28359b7886d994e84a8725394935e7 (diff)
parent22570b68e3cb9380403d903680be3b3112a26490 (diff)
downloadgit-dfb67594e964e63f20546361597c06432c73779d.zip
git-dfb67594e964e63f20546361597c06432c73779d.tar.gz
git-dfb67594e964e63f20546361597c06432c73779d.tar.bz2
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
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/dir.c b/dir.c
index 4183acc..56106c9 100644
--- a/dir.c
+++ b/dir.c
@@ -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;
}