From 72c378d8a618b9a57e4edf12700c51b0af86f124 Mon Sep 17 00:00:00 2001 From: Michael Haggerty Date: Wed, 5 Mar 2014 18:26:25 +0100 Subject: cache_tree_find(): remove redundant checks slash is initialized to a value that cannot be NULL. So remove the guards against slash == NULL later in the loop. Suggested-by: David Kastrup Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- cache-tree.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'cache-tree.c') diff --git a/cache-tree.c b/cache-tree.c index 0bbec43216..4d439bd915 100644 --- a/cache-tree.c +++ b/cache-tree.c @@ -564,10 +564,9 @@ static struct cache_tree *cache_tree_find(struct cache_tree *it, const char *pat if (!sub) return NULL; it = sub->cache_tree; - if (slash) - while (*slash && *slash == '/') - slash++; - if (!slash || !*slash) + while (*slash && *slash == '/') + slash++; + if (!*slash) return it; /* prefix ended with slashes */ path = slash; } -- cgit v1.2.1