summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-05-24 11:06:38 +0200
committerGitHub <noreply@github.com>2019-05-24 11:06:38 +0200
commit7a0238b18b25f65eb3e67fbd9d6a8a0afc58664a (patch)
tree2b10580db002acfaf1f636dc265f86f855f92b0e
parent2f7b6ad5070635edefa87e0cff76d897e8df5cfb (diff)
parent9cc904dae15d713aebd9becf83f42c9accb597a1 (diff)
downloadlibgit2-7a0238b18b25f65eb3e67fbd9d6a8a0afc58664a.tar.gz
Merge pull request #5084 from eaigner/garbage-value
repository: fix garbage return value
-rw-r--r--src/repository.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c
index 349ddf1d4..8b9002890 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -2216,7 +2216,7 @@ int git_repository_foreach_head(git_repository *repo,
{
git_strarray worktrees = GIT_VECTOR_INIT;
git_buf path = GIT_BUF_INIT;
- int error;
+ int error = 0;
size_t i;