My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5cd83e1
)
dir: remove unused variable sb
author
René Scharfe
<l.s.r@web.de>
Tue, 19 May 2015 22:13:33 +0000
(
00:13
+0200)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 20 May 2015 20:50:22 +0000
(13:50 -0700)
It had never been used.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
dir.c
patch
|
blob
|
history
diff --git
a/dir.c
b/dir.c
index
a3e7073
..
480ad05
100644
(file)
--- 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;
}