summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-10-22 11:46:22 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-10-27 16:13:09 -0700
commitc2892d61acfe4ec1544a87e2455bb086bee96516 (patch)
treeb0ea9ba87588b9483c3f0979c3cc4a7b13bb7aa4 /src
parent899cb7a876a13f0031484db799a84b613c690c21 (diff)
downloadlibgit2-c2892d61acfe4ec1544a87e2455bb086bee96516.tar.gz
status: remove git_tree_entry_bypos
The only caller has been changed to treat a NULL tree as a special case and use the existing git_tree_entry_byindex. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src')
-rw-r--r--src/status.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/status.c b/src/status.c
index 62b3fcb7f..7449335c2 100644
--- a/src/status.c
+++ b/src/status.c
@@ -324,19 +324,6 @@ static int compare(const char *left, const char *right)
return strcmp(left, right);
}
-/*
- * Convenience method to enumerate a tree. Contrarily to the git_tree_entry_byindex()
- * method, it allows the tree to be enumerated to be NULL. In this case, every returned
- * tree entry will be NULL as well.
- */
-static const git_tree_entry *git_tree_entry_bypos(git_tree *tree, unsigned int idx)
-{
- if (tree == NULL)
- return NULL;
-
- return git_vector_get(&tree->entries, idx);
-}
-
/* Greatly inspired from JGit IndexTreeWalker */
/* https://github.com/spearce/jgit/blob/ed47e29c777accfa78c6f50685a5df2b8f5b8ff5/org.spearce.jgit/src/org/spearce/jgit/lib/IndexTreeWalker.java#L88 */
@@ -359,7 +346,11 @@ static int dirent_cb(void *state, char *a)
a_name = (path_type != GIT_STATUS_PATH_NULL) ? a + st->workdir_path_len : NULL;
while (1) {
- m = git_tree_entry_bypos(st->tree, st->tree_position);
+ if (st->tree == NULL)
+ m = NULL;
+ else
+ m = git_tree_entry_byindex(st->tree, st->tree_position);
+
entry = git_index_get(st->index, st->index_position);
if ((m == NULL) && (a == NULL) && (entry == NULL))