Commit 7135e77a by Vicent Martí

Merge pull request #1967 from victorgp/cleaning-code-minor-change

Cleaning code, removing unused variables
parents e1ce5249 10b6678f
...@@ -219,7 +219,6 @@ on_error: ...@@ -219,7 +219,6 @@ on_error:
int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, const char *name, const char *url, const char *fetch) int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, const char *name, const char *url, const char *fetch)
{ {
git_buf buf = GIT_BUF_INIT;
git_remote *remote = NULL; git_remote *remote = NULL;
int error; int error;
...@@ -232,8 +231,6 @@ int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, con ...@@ -232,8 +231,6 @@ int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, con
if (create_internal(&remote, repo, name, url, fetch) < 0) if (create_internal(&remote, repo, name, url, fetch) < 0)
goto on_error; goto on_error;
git_buf_free(&buf);
if (git_remote_save(remote) < 0) if (git_remote_save(remote) < 0)
goto on_error; goto on_error;
...@@ -242,7 +239,6 @@ int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, con ...@@ -242,7 +239,6 @@ int git_remote_create_with_fetchspec(git_remote **out, git_repository *repo, con
return 0; return 0;
on_error: on_error:
git_buf_free(&buf);
git_remote_free(remote); git_remote_free(remote);
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment