From: Michael Haggerty Date: Thu, 4 Aug 2011 04:36:22 +0000 (+0200) Subject: Remove redundant check X-Git-Tag: v1.7.7-rc0~23^2~17 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/7373eab48e284a808cde766831172d3447f9e320 Remove redundant check bootstrap_attr_stack() also checks whether attr_stack is already set. Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/attr.c b/attr.c index b8ce1586c8..ab30c81b41 100644 --- a/attr.c +++ b/attr.c @@ -565,8 +565,7 @@ static void prepare_attr_stack(const char *path) * .gitattributes in deeper directories to shallower ones, * and finally use the built-in set as the default. */ - if (!attr_stack) - bootstrap_attr_stack(); + bootstrap_attr_stack(); /* * Pop the "info" one that is always at the top of the stack.