]> git.proxmox.com Git - libgit2.git/commitdiff
remote: simplify anonymous creation
authorCarlos Martín Nieto <cmn@dwim.me>
Fri, 24 Apr 2015 22:38:22 +0000 (00:38 +0200)
committerCarlos Martín Nieto <cmn@dwim.me>
Wed, 13 May 2015 07:46:36 +0000 (09:46 +0200)
We're down to simply having it be a call to create_internal() so let's
simply do that. The rest of the code is just a distraction.

src/remote.c

index 891f0f2b62a5d4310838a6bc7516c460444b34ec..44885bd17f24ee41ac7f68d970a111f4add28657 100644 (file)
@@ -313,14 +313,7 @@ on_error:
 
 int git_remote_create_anonymous(git_remote **out, git_repository *repo, const char *url, const char *fetch)
 {
-       int error;
-       git_remote *remote;
-
-       if ((error = create_internal(&remote, repo, NULL, url, fetch)) < 0)
-               return error;
-
-       *out = remote;
-       return 0;
+       return create_internal(out, repo, NULL, url, fetch);
 }
 
 int git_remote_dup(git_remote **dest, git_remote *source)