summaryrefslogtreecommitdiff
path: root/src/remote.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-03-18 05:04:12 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-03-18 05:04:12 +0100
commit03b51b5d945355260bd34971a31ba8d6958cfb99 (patch)
tree9549910832482ab736b52e48cd340381edf78e02 /src/remote.c
parent83ad46f7269aa9768c768a366f5cc3912f84a421 (diff)
parent1034f1b583e4bfe39d46243568aafb27e725f2fa (diff)
downloadlibgit2-03b51b5d945355260bd34971a31ba8d6958cfb99.tar.gz
Merge pull request #2955 from git-up/update_tips_fixes
Update tips fixes
Diffstat (limited to 'src/remote.c')
-rw-r--r--src/remote.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/remote.c b/src/remote.c
index bdb4b31df..ac7c43c78 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -2329,6 +2329,10 @@ int git_remote_upload(git_remote *remote, const git_strarray *refspecs, const gi
(error = git_remote_connect(remote, GIT_DIRECTION_PUSH)) < 0)
goto cleanup;
+ free_refspecs(&remote->active_refspecs);
+ if (dwim_refspecs(&remote->active_refspecs, &remote->refspecs, &remote->refs) < 0)
+ goto cleanup;
+
if (remote->push) {
git_push_free(remote->push);
remote->push = NULL;