On Thu, Oct 06, 2011 at 11:21:47PM +0200, Carlos Martín Nieto wrote: > diff --git a/builtin/fetch.c b/builtin/fetch.c > index b937d71..94b2bd3 100644 > --- a/builtin/fetch.c > +++ b/builtin/fetch.c > @@ -699,8 +699,17 @@ static int do_fetch(struct transport *transport, > free_refs(ref_map); > return 1; > } > - if (prune) > + if (prune) { > + /* If --tags was specified, we need to tell prune_refs > + * that we're filtering the refs from the remote */ > + if (tags == TAGS_SET) { > + const char * tags_refspec = "refs/tags/*:refs/tags/*"; > + refs = xrealloc(refs, (ref_count + 1) * sizeof(struct refspec)); > + refs[ref_count] = *parse_fetch_refspec(1, &tags_refspec); > + ref_count++; > + } > prune_refs(transport, refs, ref_count, ref_map); > + } I don't think we can realloc refs here. It's passed into do_fetch. When we realloc it, the old pointer value will be invalid. But when we return from do_fetch, the caller (fetch_one) will still have that old value, and will call free() on it. Instead, you have to make a whole new list, copy the old values in, add your new one, and then free the result. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html