summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin/fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 680ba66e53..bbc2bb8859 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -976,13 +976,13 @@ static int get_remote_group(const char *key, const char *value, void *priv)
if (starts_with(key, "remotes.") &&
!strcmp(key + 8, g->name)) {
/* split list by white space */
- size_t wordlen = strcspn(value, " \t\n");
while (*value) {
+ size_t wordlen = strcspn(value, " \t\n");
+
if (wordlen >= 1)
string_list_append(g->list,
xstrndup(value, wordlen));
value += wordlen + (value[wordlen] != '\0');
- wordlen = strcspn(value, " \t\n");
}
}