Unverified Commit 68e73791 by Edward Thomson Committed by GitHub

Merge pull request #4709 from pks-t/pks/refspec-dispose

refspec: rename `git_refspec__free` to `git_refspec__dispose`
parents 01574d40 af3088e4
...@@ -78,7 +78,7 @@ static int filter_wants(git_remote *remote, const git_fetch_options *opts) ...@@ -78,7 +78,7 @@ static int filter_wants(git_remote *remote, const git_fetch_options *opts)
goto cleanup; goto cleanup;
error = git_refspec__dwim_one(&remote->active_refspecs, &head, &remote->refs); error = git_refspec__dwim_one(&remote->active_refspecs, &head, &remote->refs);
git_refspec__free(&head); git_refspec__dispose(&head);
if (error < 0) if (error < 0)
goto cleanup; goto cleanup;
...@@ -96,7 +96,7 @@ static int filter_wants(git_remote *remote, const git_fetch_options *opts) ...@@ -96,7 +96,7 @@ static int filter_wants(git_remote *remote, const git_fetch_options *opts)
} }
cleanup: cleanup:
git_refspec__free(&tagspec); git_refspec__dispose(&tagspec);
return error; return error;
} }
......
...@@ -83,7 +83,7 @@ static void free_refspec(push_spec *spec) ...@@ -83,7 +83,7 @@ static void free_refspec(push_spec *spec)
if (spec == NULL) if (spec == NULL)
return; return;
git_refspec__free(&spec->refspec); git_refspec__dispose(&spec->refspec);
git__free(spec); git__free(spec);
} }
......
...@@ -144,11 +144,11 @@ int git_refspec__parse(git_refspec *refspec, const char *input, bool is_fetch) ...@@ -144,11 +144,11 @@ int git_refspec__parse(git_refspec *refspec, const char *input, bool is_fetch)
giterr_set( giterr_set(
GITERR_INVALID, GITERR_INVALID,
"'%s' is not a valid refspec.", input); "'%s' is not a valid refspec.", input);
git_refspec__free(refspec); git_refspec__dispose(refspec);
return -1; return -1;
} }
void git_refspec__free(git_refspec *refspec) void git_refspec__dispose(git_refspec *refspec)
{ {
if (refspec == NULL) if (refspec == NULL)
return; return;
...@@ -181,7 +181,7 @@ int git_refspec_parse(git_refspec **out_refspec, const char *input, int is_fetch ...@@ -181,7 +181,7 @@ int git_refspec_parse(git_refspec **out_refspec, const char *input, int is_fetch
void git_refspec_free(git_refspec *refspec) void git_refspec_free(git_refspec *refspec)
{ {
git_refspec__free(refspec); git_refspec__dispose(refspec);
git__free(refspec); git__free(refspec);
} }
......
...@@ -30,7 +30,7 @@ int git_refspec__parse( ...@@ -30,7 +30,7 @@ int git_refspec__parse(
const char *str, const char *str,
bool is_fetch); bool is_fetch);
void git_refspec__free(git_refspec *refspec); void git_refspec__dispose(git_refspec *refspec);
int git_refspec__serialize(git_buf *out, const git_refspec *refspec); int git_refspec__serialize(git_buf *out, const git_refspec *refspec);
......
...@@ -44,7 +44,7 @@ static int add_refspec_to(git_vector *vector, const char *string, bool is_fetch) ...@@ -44,7 +44,7 @@ static int add_refspec_to(git_vector *vector, const char *string, bool is_fetch)
spec->push = !is_fetch; spec->push = !is_fetch;
if (git_vector_insert(vector, spec) < 0) { if (git_vector_insert(vector, spec) < 0) {
git_refspec__free(spec); git_refspec__dispose(spec);
git__free(spec); git__free(spec);
return -1; return -1;
} }
...@@ -117,7 +117,7 @@ static int write_add_refspec(git_repository *repo, const char *name, const char ...@@ -117,7 +117,7 @@ static int write_add_refspec(git_repository *repo, const char *name, const char
return error; return error;
} }
git_refspec__free(&spec); git_refspec__dispose(&spec);
if ((error = git_buf_printf(&var, fmt, name)) < 0) if ((error = git_buf_printf(&var, fmt, name)) < 0)
return error; return error;
...@@ -826,7 +826,7 @@ static void free_refspecs(git_vector *vec) ...@@ -826,7 +826,7 @@ static void free_refspecs(git_vector *vec)
git_refspec *spec; git_refspec *spec;
git_vector_foreach(vec, i, spec) { git_vector_foreach(vec, i, spec) {
git_refspec__free(spec); git_refspec__dispose(spec);
git__free(spec); git__free(spec);
} }
...@@ -1416,13 +1416,13 @@ static int update_tips_for_spec( ...@@ -1416,13 +1416,13 @@ static int update_tips_for_spec(
goto on_error; goto on_error;
git_vector_free(&update_heads); git_vector_free(&update_heads);
git_refspec__free(&tagspec); git_refspec__dispose(&tagspec);
git_buf_dispose(&refname); git_buf_dispose(&refname);
return 0; return 0;
on_error: on_error:
git_vector_free(&update_heads); git_vector_free(&update_heads);
git_refspec__free(&tagspec); git_refspec__dispose(&tagspec);
git_buf_dispose(&refname); git_buf_dispose(&refname);
return -1; return -1;
...@@ -1607,7 +1607,7 @@ int git_remote_update_tips( ...@@ -1607,7 +1607,7 @@ int git_remote_update_tips(
out: out:
git_vector_free(&refs); git_vector_free(&refs);
git_refspec__free(&tagspec); git_refspec__dispose(&tagspec);
return error; return error;
} }
...@@ -2045,7 +2045,7 @@ int git_remote_is_valid_name( ...@@ -2045,7 +2045,7 @@ int git_remote_is_valid_name(
error = git_refspec__parse(&refspec, git_buf_cstr(&buf), true); error = git_refspec__parse(&refspec, git_buf_cstr(&buf), true);
git_buf_dispose(&buf); git_buf_dispose(&buf);
git_refspec__free(&refspec); git_refspec__dispose(&refspec);
giterr_clear(); giterr_clear();
return error == 0; return error == 0;
......
...@@ -192,7 +192,7 @@ static void free_symrefs(git_vector *symrefs) ...@@ -192,7 +192,7 @@ static void free_symrefs(git_vector *symrefs)
size_t i; size_t i;
git_vector_foreach(symrefs, i, spec) { git_vector_foreach(symrefs, i, spec) {
git_refspec__free(spec); git_refspec__dispose(spec);
git__free(spec); git__free(spec);
} }
......
...@@ -131,7 +131,7 @@ static int append_symref(const char **out, git_vector *symrefs, const char *ptr) ...@@ -131,7 +131,7 @@ static int append_symref(const char **out, git_vector *symrefs, const char *ptr)
on_invalid: on_invalid:
giterr_set(GITERR_NET, "remote sent invalid symref"); giterr_set(GITERR_NET, "remote sent invalid symref");
git_refspec__free(mapping); git_refspec__dispose(mapping);
git__free(mapping); git__free(mapping);
return -1; return -1;
} }
......
...@@ -8,7 +8,7 @@ static void assert_refspec(unsigned int direction, const char *input, bool is_ex ...@@ -8,7 +8,7 @@ static void assert_refspec(unsigned int direction, const char *input, bool is_ex
int error; int error;
error = git_refspec__parse(&refspec, input, direction == GIT_DIRECTION_FETCH); error = git_refspec__parse(&refspec, input, direction == GIT_DIRECTION_FETCH);
git_refspec__free(&refspec); git_refspec__dispose(&refspec);
if (is_expected_to_be_valid) if (is_expected_to_be_valid)
cl_assert_equal_i(0, error); cl_assert_equal_i(0, error);
...@@ -98,7 +98,7 @@ static void assert_valid_transform(const char *refspec, const char *name, const ...@@ -98,7 +98,7 @@ static void assert_valid_transform(const char *refspec, const char *name, const
cl_assert_equal_s(result, buf.ptr); cl_assert_equal_s(result, buf.ptr);
git_buf_dispose(&buf); git_buf_dispose(&buf);
git_refspec__free(&spec); git_refspec__dispose(&spec);
} }
void test_network_refspecs__transform_mid_star(void) void test_network_refspecs__transform_mid_star(void)
...@@ -120,7 +120,7 @@ static void assert_invalid_transform(const char *refspec, const char *name) ...@@ -120,7 +120,7 @@ static void assert_invalid_transform(const char *refspec, const char *name)
cl_git_fail(git_refspec_transform(&buf, &spec, name)); cl_git_fail(git_refspec_transform(&buf, &spec, name));
git_buf_dispose(&buf); git_buf_dispose(&buf);
git_refspec__free(&spec); git_refspec__dispose(&spec);
} }
void test_network_refspecs__invalid(void) void test_network_refspecs__invalid(void)
...@@ -138,7 +138,7 @@ static void assert_invalid_rtransform(const char *refspec, const char *name) ...@@ -138,7 +138,7 @@ static void assert_invalid_rtransform(const char *refspec, const char *name)
cl_git_fail(git_refspec_rtransform(&buf, &spec, name)); cl_git_fail(git_refspec_rtransform(&buf, &spec, name));
git_buf_dispose(&buf); git_buf_dispose(&buf);
git_refspec__free(&spec); git_refspec__dispose(&spec);
} }
void test_network_refspecs__invalid_reverse(void) void test_network_refspecs__invalid_reverse(void)
...@@ -156,7 +156,7 @@ void test_network_refspecs__matching(void) ...@@ -156,7 +156,7 @@ void test_network_refspecs__matching(void)
cl_assert_equal_s("", spec.src); cl_assert_equal_s("", spec.src);
cl_assert_equal_s("", spec.dst); cl_assert_equal_s("", spec.dst);
git_refspec__free(&spec); git_refspec__dispose(&spec);
} }
void test_network_refspecs__parse_free(void) void test_network_refspecs__parse_free(void)
......
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