all repos — cgit @ 40e1d9b6177558bf4069c09ca6d8e3a682baa988

a hyperfast web frontend for git written in c

ui-shared: squelch compiler warning.

Since tail is initialized to 0, we will never get a warning on the last
if statement, but recent gcc complains anyway. So, we initialize len as
well. Future gcc versions should be able to optimize this out anyway.
Jason A. Donenfeld Jason@zx2c4.com
Wed, 20 Mar 2013 20:43:13 +0100
commit

40e1d9b6177558bf4069c09ca6d8e3a682baa988

parent

7669f7f73082ce9eb1aef28495773492cc5bec90

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M ui-shared.cui-shared.c

@@ -523,6 +523,7 @@ struct string_list_item *item;

char tail, *dir; size_t len; + len = 0; tail = 0; list = &ctx.repo->submodules; item = lookup_path(list, path);