commit | 7183c09d11ac4b98f1cc78f29dcbd85df5533001 | [log] [tgz] |
---|---|---|
author | Johannes Schindelin <johannes.schindelin@gmx.de> | Mon Apr 20 19:44:53 2009 +0200 |
committer | Junio C Hamano <gitster@pobox.com> | Mon Apr 20 13:44:14 2009 -0700 |
tree | bc5d434c42ae7f87f2ab628be8cb4a99012352cb | |
parent | 1f9b620fdbf27835f54b11008d64c4014b8f4c32 [diff] [blame] |
Fix off-by-one in read_tree_recursive Found by valgrind. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/tree.c b/tree.c index 0d703a0..5ab90af 100644 --- a/tree.c +++ b/tree.c
@@ -62,6 +62,7 @@ continue; /* pathspecs match only at the directory boundaries */ if (!matchlen || + baselen == matchlen || base[matchlen] == '/' || match[matchlen - 1] == '/') return 1;