http: release strbuf on disabled alternates

This likely has no real-world impact on memory usage,
but it is cleaner for future readers.

Fixes: abcbdc0389 ("http: respect protocol.*.allow=user for http-alternates")
Signed-off-by: Eric Wong <e@80x24.org>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Eric Wong 2017-03-04 01:50:16 +00:00 committed by Junio C Hamano
parent de46138826
commit 5cae73d5d2

View File

@ -319,6 +319,8 @@ static void process_alternates_response(void *callback_data)
while (tail->next != NULL) while (tail->next != NULL)
tail = tail->next; tail = tail->next;
tail->next = newalt; tail->next = newalt;
} else {
strbuf_release(&target);
} }
} }
} }