remote: drop free_refspecs() function
commita56eea28c45a8f76e4167c4e6baa87e89b7be3bc
authorJeff King <peff@peff.net>
Wed, 31 May 2017 04:27:47 +0000 (31 00:27 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Jun 2017 00:59:00 +0000 (1 09:59 +0900)
treeec7d632c2fc3c136147aae12ce14d270d1931c5a
parentb06d3643105c8758ed019125a4399cb7efdcce2c
remote: drop free_refspecs() function

We already have free_refspec(), a public function which does
the same thing as the static free_refspecs(). Let's just
keep one.  There are two minor differences between the
functions:

  1. free_refspecs() is a noop when the refspec argument is
     NULL. This probably doesn't matter in practice.  The
     nr_refspec parameter would presumably be 0 in that
     case, skipping the loop. And free(NULL) is explicitly
     OK. But it doesn't hurt for us to port this extra
     safety to free_refspec(), as one of the callers passes
     a funny "i+1" count.

  2. The order of arguments is reversed between the two
     functions. This patch uses the already-public order of
     free_refspec(), as it matches the argument order on the
     parsing side.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
remote.c