summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2015-07-28 21:08:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-07-28 21:39:24 (GMT)
commit5f65499fa281748421f2ae65cd794533ada4b4de (patch)
tree96973bd7f198a19a4029afa61537125a2fa018b6 /builtin
parente286542de0c27e2c53d9a1ec44897dbef5de80dc (diff)
downloadgit-5f65499fa281748421f2ae65cd794533ada4b4de.zip
git-5f65499fa281748421f2ae65cd794533ada4b4de.tar.gz
git-5f65499fa281748421f2ae65cd794533ada4b4de.tar.bz2
get_remote_group(): eliminate superfluous call to strcspn()
There is no need to call it if value is the empty string. This also eliminates code duplication. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 680ba66..bbc2bb8 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");
}
}