From 6810ba089a543a2407b1c8824dffa9b4e1d63975 Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Sat, 28 Jul 2012 11:33:12 +0200 Subject: [PATCH] Fix -Wuninitialized warning --- src/reflog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reflog.c b/src/reflog.c index 53cc25fa1..93f68eaf2 100644 --- a/src/reflog.c +++ b/src/reflog.c @@ -197,7 +197,7 @@ static int create_new_reflog_file(const char *filepath) int git_reflog_read(git_reflog **reflog, git_reference *ref) { - int error; + int error = -1; git_buf log_path = GIT_BUF_INIT; git_buf log_file = GIT_BUF_INIT; git_reflog *log = NULL;