mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-24 16:34:06 +00:00
Fix use of uninitialized variable
This commit is contained in:
parent
a6a82e1a59
commit
6f58332f3a
@ -401,8 +401,8 @@ static int prepare_worktree_commit_message(
|
||||
git_buf buf = GIT_BUF_INIT;
|
||||
int error;
|
||||
|
||||
if (git_buf_set(&buf, git_buf_cstr(msg), git_buf_len(msg)) < 0)
|
||||
return -1;
|
||||
if ((error = git_buf_set(&buf, git_buf_cstr(msg), git_buf_len(msg))) < 0)
|
||||
return error;
|
||||
|
||||
git_buf_clear(msg);
|
||||
|
||||
@ -419,7 +419,7 @@ static int prepare_worktree_commit_message(
|
||||
git_buf_printf(msg, ": %s\n", user_message);
|
||||
}
|
||||
|
||||
error = git_buf_oom(msg) || git_buf_oom(&buf) ? -1 : 0;
|
||||
error = (git_buf_oom(msg) || git_buf_oom(&buf)) ? -1 : 0;
|
||||
|
||||
cleanup:
|
||||
git_buf_free(&buf);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user