Re: [PATCH v2 1/7] prune_remote(): exit early if there are no stale references

2014-11-25 Thread Junio C Hamano
Michael Haggerty  writes:

> Aside from making the logic clearer, this avoids a call to
> warn_dangling_symrefs(), which always does a for_each_rawref()
> iteration.

Makes sense.  Thanks.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 1/7] prune_remote(): exit early if there are no stale references

2014-11-25 Thread Michael Haggerty
Aside from making the logic clearer, this avoids a call to
warn_dangling_symrefs(), which always does a for_each_rawref()
iteration.

Signed-off-by: Michael Haggerty 
Reviewed-by: Jonathan Nieder 
---
 builtin/remote.c | 39 +--
 1 file changed, 21 insertions(+), 18 deletions(-)

diff --git a/builtin/remote.c b/builtin/remote.c
index 7f28f92..d2b684c 100644
--- a/builtin/remote.c
+++ b/builtin/remote.c
@@ -1325,25 +1325,28 @@ static int prune_remote(const char *remote, int dry_run)
memset(&states, 0, sizeof(states));
get_remote_ref_states(remote, &states, GET_REF_STATES);
 
-   if (states.stale.nr) {
-   printf_ln(_("Pruning %s"), remote);
-   printf_ln(_("URL: %s"),
-  states.remote->url_nr
-  ? states.remote->url[0]
-  : _("(no URL)"));
-
-   delete_refs = xmalloc(states.stale.nr * sizeof(*delete_refs));
-   for (i = 0; i < states.stale.nr; i++)
-   delete_refs[i] = states.stale.items[i].util;
-   if (!dry_run) {
-   struct strbuf err = STRBUF_INIT;
-   if (repack_without_refs(delete_refs, states.stale.nr,
-   &err))
-   result |= error("%s", err.buf);
-   strbuf_release(&err);
-   }
-   free(delete_refs);
+   if (!states.stale.nr) {
+   free_remote_ref_states(&states);
+   return 0;
+   }
+
+   printf_ln(_("Pruning %s"), remote);
+   printf_ln(_("URL: %s"),
+ states.remote->url_nr
+ ? states.remote->url[0]
+ : _("(no URL)"));
+
+   delete_refs = xmalloc(states.stale.nr * sizeof(*delete_refs));
+   for (i = 0; i < states.stale.nr; i++)
+   delete_refs[i] = states.stale.items[i].util;
+   if (!dry_run) {
+   struct strbuf err = STRBUF_INIT;
+   if (repack_without_refs(delete_refs, states.stale.nr,
+   &err))
+   result |= error("%s", err.buf);
+   strbuf_release(&err);
}
+   free(delete_refs);
 
for (i = 0; i < states.stale.nr; i++) {
const char *refname = states.stale.items[i].util;
-- 
2.1.3

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html