mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-14 16:07:57 +00:00
Fix -Wuninitialized warning
This commit is contained in:
parent
31637cd56a
commit
6810ba089a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user