Browse Source

transport-helper: trivial style cleanup

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Felipe Contreras 12 years ago committed by Junio C Hamano
parent
commit
b120ef3eac
  1. 3
      transport-helper.c

3
transport-helper.c

@ -211,9 +211,8 @@ static struct child_process *get_helper(struct transport *transport) @@ -211,9 +211,8 @@ static struct child_process *get_helper(struct transport *transport)
int i;
data->refspec_nr = refspec_nr;
data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
for (i = 0; i < refspec_nr; i++) {
for (i = 0; i < refspec_nr; i++)
free((char *)refspecs[i]);
}
free(refspecs);
}
strbuf_release(&buf);

Loading…
Cancel
Save