Commit 6810ba08 by Michael Schubert

Fix -Wuninitialized warning

parent 31637cd5
...@@ -197,7 +197,7 @@ static int create_new_reflog_file(const char *filepath) ...@@ -197,7 +197,7 @@ static int create_new_reflog_file(const char *filepath)
int git_reflog_read(git_reflog **reflog, git_reference *ref) 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_path = GIT_BUF_INIT;
git_buf log_file = GIT_BUF_INIT; git_buf log_file = GIT_BUF_INIT;
git_reflog *log = NULL; git_reflog *log = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment