diff options
author | Arthur Schreiber <schreiber.arthur@googlemail.com> | 2014-01-26 19:35:02 +0100 |
---|---|---|
committer | Arthur Schreiber <schreiber.arthur@googlemail.com> | 2014-01-26 19:35:02 +0100 |
commit | 991b2840eb6389048bccdb40b51889e32e8f1460 (patch) | |
tree | 4714a320a2cc9c069b1a295ab9dcc7fdab464295 /src/remote.c | |
parent | 11f6ad5fcf5f1251ef1b51d18409f84cb87cb8b7 (diff) | |
download | libgit2-991b2840eb6389048bccdb40b51889e32e8f1460.tar.gz |
Make sure git_remote_dup copies a remote's refspecs correctly.
Diffstat (limited to 'src/remote.c')
-rw-r--r-- | src/remote.c | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/src/remote.c b/src/remote.c index 29bffeeba..5b3656a81 100644 --- a/src/remote.c +++ b/src/remote.c @@ -248,9 +248,10 @@ int git_remote_create_inmemory(git_remote **out, git_repository *repo, const cha return 0; } -int git_remote_dup(git_remote **dest, const git_remote *source) +int git_remote_dup(git_remote **dest, git_remote *source) { - int error; + int error = 0; + git_strarray refspecs = { 0 }; git_remote *remote = git__calloc(1, sizeof(git_remote)); GITERR_CHECK_ALLOC(remote); @@ -274,16 +275,33 @@ int git_remote_dup(git_remote **dest, const git_remote *source) remote->check_cert = source->check_cert; remote->update_fetchhead = source->update_fetchhead; - if ((error = git_vector_dup(&remote->refs, &source->refs, NULL)) < 0 || - (error = git_vector_dup(&remote->refspecs, &source->refspecs, NULL)) < 0 || - (error = git_vector_dup(&remote->active_refspecs, &source->active_refspecs, NULL))) { - git__free(remote); - return error; + if (git_vector_init(&remote->refs, 32, NULL) < 0 || + git_vector_init(&remote->refspecs, 2, NULL) < 0 || + git_vector_init(&remote->active_refspecs, 2, NULL) < 0) { + error = -1; + goto cleanup; } + if ((error = git_remote_get_fetch_refspecs(&refspecs, source)) < 0 || + (error = git_remote_set_fetch_refspecs(remote, &refspecs)) < 0) + goto cleanup; + + git_strarray_free(&refspecs); + + if ((error = git_remote_get_push_refspecs(&refspecs, source)) < 0 || + (error = git_remote_set_push_refspecs(remote, &refspecs)) < 0) + goto cleanup; + *dest = remote; - return 0; +cleanup: + + git_strarray_free(&refspecs); + + if (error < 0) + git__free(remote); + + return error; } struct refspec_cb_data { |