mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-06 22:58:58 +00:00
Free the created refs in git_remote_update_tips
This commit is contained in:
parent
a31471140f
commit
391575638c
@ -261,6 +261,7 @@ int git_remote_update_tips(git_remote *remote)
|
||||
if (!strcmp(head->name, GIT_HEAD_FILE)) {
|
||||
error = git_reference_create_oid(&ref, remote->repo, GIT_FETCH_HEAD_FILE, &head->oid, 1);
|
||||
i = 1;
|
||||
git_reference_free(ref);
|
||||
if (error < GIT_SUCCESS)
|
||||
return git__rethrow(error, "Failed to update FETCH_HEAD");
|
||||
}
|
||||
@ -275,6 +276,8 @@ int git_remote_update_tips(git_remote *remote)
|
||||
error = git_reference_create_oid(&ref, remote->repo, refname, &head->oid, 1);
|
||||
if (error < GIT_SUCCESS)
|
||||
return error;
|
||||
|
||||
git_reference_free(ref);
|
||||
}
|
||||
|
||||
return GIT_SUCCESS;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user